mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-22 00:56:34 +03:00
Merge pull request #171 from Akay7/CanLoginWithCustomUserModel
update for accept login users of CustomUserModel objects where doesn'…
This commit is contained in:
commit
c282a1309e
|
@ -81,7 +81,7 @@ class LoginSerializer(serializers.Serializer):
|
|||
# Authentication without using allauth
|
||||
if email:
|
||||
try:
|
||||
username = UserModel.objects.get(email__iexact=email).username
|
||||
username = UserModel.objects.get(email__iexact=email).get_username()
|
||||
except UserModel.DoesNotExist:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user