Class: Devise::Strategies::Base

Inherits:
Warden::Strategies::Base
  • Object
show all
Defined in:
lib/devise/strategies/base.rb

Overview

Base strategy for Devise. Responsible for verifying correct scope and mapping.

Instance Method Summary collapse

Instance Method Details

#mappingObject

Checks if a valid scope was given for devise and find mapping based on this scope.



7
8
9
10
11
12
13
# File 'lib/devise/strategies/base.rb', line 7

def mapping
  @mapping ||= begin
    mapping = Devise.mappings[scope]
    raise "Could not find mapping for #{scope}" unless mapping
    mapping
  end
end