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.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/gitlab/saml/auth_hash.rb b/lib/gitlab/saml/auth_hash.rb
deleted file mode 100644
index 33d19373098..00000000000
--- a/lib/gitlab/saml/auth_hash.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-module Gitlab
- module Saml
- class AuthHash < Gitlab::OAuth::AuthHash
- def groups
- Array.wrap(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