mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-22 00:56: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
|
||||
# Import is needed only if we are using social login, in which
|
||||
# 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:
|
||||
raise ImportError('allauth.socialaccount needs to be added to INSTALLED_APPS.')
|
||||
if 'allauth.socialaccount' in settings.INSTALLED_APPS:
|
||||
try:
|
||||
from allauth.socialaccount.helpers import complete_social_login
|
||||
except ImportError:
|
||||
pass
|
||||
|
||||
|
||||
|
||||
class SocialLoginSerializer(serializers.Serializer):
|
||||
|
|
Loading…
Reference in New Issue
Block a user