Module: Devise::Models::TokenAuthenticatable::ClassMethods

Defined in:
lib/devise/models/token_authenticatable.rb

Instance Method Summary collapse

Instance Method Details

#authentication_tokenObject

Generate a token checking if one does not already exist in the database.



64
65
66
# File 'lib/devise/models/token_authenticatable.rb', line 64

def authentication_token
  generate_token(:authentication_token)
end

#find_for_token_authentication(conditions) ⇒ Object



59
60
61
# File 'lib/devise/models/token_authenticatable.rb', line 59

def find_for_token_authentication(conditions)
  find_for_authentication(:authentication_token => conditions[token_authentication_key])
end