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 convenience 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