gitlab-org--gitlab-foss/lib/gitlab/saml/auth_hash.rb

18 lines
371 B
Ruby
Raw Normal View History

2016-04-05 00:09:12 +00:00
module Gitlab
module Saml
class AuthHash < Gitlab::OAuth::AuthHash
def groups
get_raw(Gitlab::Saml::Config.groups)
end
private
def get_raw(key)
2016-04-06 23:12:25 +00:00
# Needs to call `all` because of https://git.io/vVo4u
# otherwise just the first value is returned
auth_hash.extra[:raw_info].all[key]
2016-04-05 00:09:12 +00:00
end
end
end
end