mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-22 09:06:40 +03:00
Add settings attribute to check if inactive user login is allowed
This will help if 'AllowAllUsersModelBackend' is used or any other authentication backend that allow inactive user login is used.
This commit is contained in:
parent
a3057b7aa1
commit
8f16c5ddc7
|
@ -91,7 +91,8 @@ class LoginSerializer(serializers.Serializer):
|
||||||
|
|
||||||
# Did we get back an active user?
|
# Did we get back an active user?
|
||||||
if user:
|
if user:
|
||||||
if not user.is_active:
|
# Raises error only if user is deactivated and inactive user login is disabled
|
||||||
|
if not user.is_active and not getattr(settings, 'REST_INACTIVE_USER_LOGIN', False):
|
||||||
msg = _('User account is disabled.')
|
msg = _('User account is disabled.')
|
||||||
raise exceptions.ValidationError(msg)
|
raise exceptions.ValidationError(msg)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user