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
user = User.find_for_authentication(:username => 'druidia')
user.valid_password?('12345') # That's amazing! I have the same combination on my luggage!
Here's a convenient method for same:
class User
def self.authenticate(username, password)
user = User.find_for_authentication(:username => username)
user&.valid_password?(password) ? user : nil
end
end
Addendum: If you use confirmable, and don't want to authenticate the user if she isn't confirmed yet, you also need to call "active_for_authentication?"