mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
16 lines
No EOL
384 B
Ruby
16 lines
No EOL
384 B
Ruby
module Devise
|
|
# Checks the scope in the given environment and returns the associated failure app.
|
|
class Delegator
|
|
def call(env)
|
|
failure_app(env).call(env)
|
|
end
|
|
|
|
def failure_app(env)
|
|
app = env["warden.options"] &&
|
|
(scope = env["warden.options"][:scope]) &&
|
|
Devise.mappings[scope].failure_app
|
|
|
|
app || Devise::FailureApp
|
|
end
|
|
end
|
|
end |