gitlab-org--gitlab-foss/config/initializers/omniauth.rb

19 lines
692 B
Ruby
Raw Normal View History

if Gitlab::Auth::LDAP::Config.enabled?
module OmniAuth::Strategies
Gitlab::Auth::LDAP::Config.available_servers.each do |server|
# do not redeclare LDAP
next if server['provider_name'] == 'ldap'
const_set(server['provider_class'], Class.new(LDAP))
end
end
2015-02-03 05:53:27 +00:00
end
OmniAuth.config.full_host = Settings.gitlab['base_url']
OmniAuth.config.allowed_request_methods = [:post]
2016-05-31 22:33:46 +00:00
# In case of auto sign-in, the GET method is used (users don't get to click on a button)
OmniAuth.config.allowed_request_methods << :get if Gitlab.config.omniauth.auto_sign_in_with_provider.present?
OmniAuth.config.before_request_phase do |env|
2017-06-22 05:19:14 +00:00
Gitlab::RequestForgeryProtection.call(env)
end