summaryrefslogtreecommitdiff
path: root/lib/gitlab/saml/auth_hash.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/saml/auth_hash.rb')
-rw-r--r--lib/gitlab/saml/auth_hash.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/gitlab/saml/auth_hash.rb b/lib/gitlab/saml/auth_hash.rb
new file mode 100644
index 00000000000..32c1c9ec5bb
--- /dev/null
+++ b/lib/gitlab/saml/auth_hash.rb
@@ -0,0 +1,19 @@
+module Gitlab
+ module Saml
+ class AuthHash < Gitlab::OAuth::AuthHash
+
+ def groups
+ get_raw(Gitlab::Saml::Config.groups)
+ end
+
+ private
+
+ def get_raw(key)
+ # Needs to call `all` because of https://git.io/vVo4u
+ # otherwise just the first value is returned
+ auth_hash.extra[:raw_info].all[key]
+ end
+
+ end
+ end
+end