You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I attempt to log in to our internal Klaxon instance, I have to type my email address with the exact capitalization that's shown in /users. When I attempt to log in with the same email address but with different capitalization, I get an "Email Not Found" error.
When I attempt to log in to our internal Klaxon instance, I have to type my email address with the exact capitalization that's shown in
/users
. When I attempt to log in with the same email address but with different capitalization, I get an "Email Not Found" error.The
User
model does a case-insensitive check for uniqueness, butSessionsController#create
uses the email address exactly as the user provided it.Seems like case-insensitivity is the way to go. Happy to take an initial stab at updating the controller, unless anyone else gets to it first.
The text was updated successfully, but these errors were encountered: