right now users can log into devise with their email & password. Problem is that email is saved case sensitive which is confusing users.
Does Devise have a setting to downcase the email, something like downcase_keys?
I know I can manually do this with a before_save but I thought I had read devise had this as an option out of the box. I just can’t find the doc on how to set it to downcase?
Thanks
You should be able to configure it using
case_insensitive_keysinconfig/initializers/devise.rb(see here).