023d4f6f2f
Signed-off-by: Rémy Coutable <remy@rymai.me>
17 lines
456 B
Ruby
17 lines
456 B
Ruby
module DeviseHelpers
|
|
# explicitly tells Devise which mapping to use
|
|
# this is needed when we are testing a Devise controller bypassing the router
|
|
def set_devise_mapping(context:)
|
|
env = env_from_context(context)
|
|
|
|
env['devise.mapping'] = Devise.mappings[:user] if env
|
|
end
|
|
|
|
def env_from_context(context)
|
|
if context.respond_to?(:env_config)
|
|
context.env_config
|
|
elsif context.respond_to?(:env)
|
|
context.env
|
|
end
|
|
end
|
|
end
|