mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-25 02:23:44 +03:00
fix mistake in imports
This commit is contained in:
parent
61393b5bff
commit
499bf72615
|
@ -8,7 +8,7 @@ try:
|
||||||
get_username_max_length)
|
get_username_max_length)
|
||||||
from allauth.account.adapter import get_adapter
|
from allauth.account.adapter import get_adapter
|
||||||
from allauth.account.utils import setup_user_email
|
from allauth.account.utils import setup_user_email
|
||||||
from allauth.socialaccount.adapter import get_adapter
|
from allauth.socialaccount.adapter import get_adapter as get_social_adapter
|
||||||
from allauth.socialaccount.helpers import complete_social_login
|
from allauth.socialaccount.helpers import complete_social_login
|
||||||
from allauth.socialaccount.models import SocialAccount
|
from allauth.socialaccount.models import SocialAccount
|
||||||
from allauth.socialaccount.providers.base import AuthProcess
|
from allauth.socialaccount.providers.base import AuthProcess
|
||||||
|
@ -141,7 +141,7 @@ class SocialLoginSerializer(serializers.Serializer):
|
||||||
)
|
)
|
||||||
|
|
||||||
# If signup is disabled, we cannot login a new user
|
# If signup is disabled, we cannot login a new user
|
||||||
if not get_adapter(request).is_open_for_signup(request, login):
|
if not get_social_adapter(request).is_open_for_signup(request, login):
|
||||||
raise serializers.ValidationError(
|
raise serializers.ValidationError(
|
||||||
_("User is not registered but registration is closed.")
|
_("User is not registered but registration is closed.")
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user