debian-mirror-gitlab/lib/gitlab/saml/config.rb
2016-08-24 12:49:21 +05:30

20 lines
358 B
Ruby

module Gitlab
module Saml
class Config
class << self
def options
Gitlab.config.omniauth.providers.find { |provider| provider.name == 'saml' }
end
def groups
options[:groups_attribute]
end
def external_groups
options[:external_groups]
end
end
end
end
end