From c56e1bdbbe67a246d90acc7842bdad10a6d43daa Mon Sep 17 00:00:00 2001 From: wangruidong <940853815@qq.com> Date: Tue, 13 Aug 2024 18:48:37 +0800 Subject: [PATCH] fix: call get_verify_state_failed_response NotImplementedError --- apps/authentication/views/base.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/authentication/views/base.py b/apps/authentication/views/base.py index 80878d641..70424e8f2 100644 --- a/apps/authentication/views/base.py +++ b/apps/authentication/views/base.py @@ -46,9 +46,6 @@ class BaseLoginCallbackView(AuthMixin, FlashMessageMixin, IMClientMixin, View): def verify_state(self): raise NotImplementedError - def get_verify_state_failed_response(self, redirect_uri): - raise NotImplementedError - def create_user_if_not_exist(self, user_id, **kwargs): user = None user_attr = self.client.get_user_detail(user_id, **kwargs) @@ -123,9 +120,6 @@ class BaseBindCallbackView(FlashMessageMixin, IMClientMixin, View): def verify_state(self): raise NotImplementedError - def get_verify_state_failed_response(self, redirect_uri): - raise NotImplementedError - def get_already_bound_response(self, redirect_uri): raise NotImplementedError