Email address not validated: send a dedicated error message.
This commit is contained in:
parent
3d44c7c6e8
commit
e2e77af4fa
@ -37,7 +37,7 @@ class AuthD::Request
|
|||||||
# In case the user hasn't validated his email address,
|
# In case the user hasn't validated his email address,
|
||||||
# authentication shouldn't be possible.
|
# authentication shouldn't be possible.
|
||||||
if user.contact.activation_key
|
if user.contact.activation_key
|
||||||
return Response::ErrorInvalidCredentials.new
|
return Response::ErrorEmailAddressNotValidated.new
|
||||||
end
|
end
|
||||||
|
|
||||||
# MIGRATION
|
# MIGRATION
|
||||||
|
@ -102,4 +102,10 @@ class AuthD::Response
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
AuthD.responses << ErrorPasswordTooLong
|
AuthD.responses << ErrorPasswordTooLong
|
||||||
|
|
||||||
|
IPC::JSON.message ErrorEmailAddressNotValidated, 36 do
|
||||||
|
def initialize()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
AuthD.responses << ErrorEmailAddressNotValidated
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user