Class: Devise::Strategies::Base
- Inherits:
-
Warden::Strategies::Base
- Object
- Warden::Strategies::Base
- Devise::Strategies::Base
- Defined in:
- lib/devise/strategies/base.rb
Overview
Base strategy for Devise. Responsible for verifying correct scope and mapping.
Direct Known Subclasses
Instance Method Summary collapse
-
#mapping ⇒ Object
Checks if a valid scope was given for devise and find mapping based on this scope.
Instance Method Details
#mapping ⇒ Object
Checks if a valid scope was given for devise and find mapping based on this scope.
6 7 8 9 10 11 12 |
# File 'lib/devise/strategies/base.rb', line 6 def mapping @mapping ||= begin mapping = Devise.mappings[scope] raise "Could not find mapping for #{scope}" unless mapping mapping end end |