Can't log in with a valid password using Authlogic and Ruby on Rails?
- by kbighorse
We support a bit of an unusual scheme. We don't require a password on User creation, and use password_resets to add a password to the user later, on demand. The problem is, once a password is created, the console indicates the password is valid:
user.valid_password? 'test'
= true
but in my UserSessions controller, @user_session.save returns…