mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-22 17:16:34 +03:00
Merge pull request #132 from asudoma/master
fix import complete_social_login
This commit is contained in:
commit
7c8a34f700
|
@ -14,13 +14,13 @@ from rest_framework import serializers
|
||||||
from requests.exceptions import HTTPError
|
from requests.exceptions import HTTPError
|
||||||
# Import is needed only if we are using social login, in which
|
# Import is needed only if we are using social login, in which
|
||||||
# case the allauth.socialaccount will be declared
|
# case the allauth.socialaccount will be declared
|
||||||
try:
|
|
||||||
from allauth.socialaccount.helpers import complete_social_login
|
|
||||||
except ImportError:
|
|
||||||
raise ImportError('allauth.socialaccount needs to be installed.')
|
|
||||||
|
|
||||||
if 'allauth.socialaccount' not in settings.INSTALLED_APPS:
|
if 'allauth.socialaccount' in settings.INSTALLED_APPS:
|
||||||
raise ImportError('allauth.socialaccount needs to be added to INSTALLED_APPS.')
|
try:
|
||||||
|
from allauth.socialaccount.helpers import complete_social_login
|
||||||
|
except ImportError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class SocialLoginSerializer(serializers.Serializer):
|
class SocialLoginSerializer(serializers.Serializer):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user