4493ec0880
[10.3] Prevent login with disabled OAuth providers See merge request gitlab/gitlabhq!2296 (cherry picked from commit 4936650427ffc88e6ee927aedbb2c724d24b094c) a0f9d222 Prevents login with disabled OAuth providers
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
|