Class: Devise::Strategies::Authenticatable
- Inherits:
-
Base
- Object
- Warden::Strategies::Base
- Base
- Devise::Strategies::Authenticatable
- Defined in:
- lib/devise/strategies/authenticatable.rb
Overview
This strategy should be used as basis for authentication strategies. It retrieves parameters both from params or from http authorization headers. See database_authenticatable for an example.
Direct Known Subclasses
Instance Attribute Summary (collapse)
-
- (Object) authentication_hash
Returns the value of attribute authentication_hash.
-
- (Object) authentication_type
Returns the value of attribute authentication_type.
-
- (Object) password
Returns the value of attribute password.
Instance Method Summary (collapse)
Instance Attribute Details
- (Object) authentication_hash
Returns the value of attribute authentication_hash
9 10 11 |
# File 'lib/devise/strategies/authenticatable.rb', line 9 def authentication_hash @authentication_hash end |
- (Object) authentication_type
Returns the value of attribute authentication_type
9 10 11 |
# File 'lib/devise/strategies/authenticatable.rb', line 9 def authentication_type @authentication_type end |
- (Object) password
Returns the value of attribute password
9 10 11 |
# File 'lib/devise/strategies/authenticatable.rb', line 9 def password @password end |
Instance Method Details
- (Boolean) store?
11 12 13 |
# File 'lib/devise/strategies/authenticatable.rb', line 11 def store? super && !mapping.to.skip_session_storage.include?(authentication_type) end |
- (Boolean) valid?
15 16 17 |
# File 'lib/devise/strategies/authenticatable.rb', line 15 def valid? valid_for_params_auth? || valid_for_http_auth? end |