Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-09-08 19:34:18 +0300
committerDouwe Maan <douwe@gitlab.com>2015-09-08 19:34:18 +0300
commit0e9ba0a4fa3a2e8335e7b902dd50710e2309773f (patch)
tree4005bafc62781ee9cb74565034963fd4f28e88d9 /lib/gitlab
parentc915e2c8237ddcae57ec48e700badd9d5bfd8c8c (diff)
Add attributes to LDAP::Config.
Diffstat (limited to 'lib/gitlab')
-rw-r--r--lib/gitlab/ldap/config.rb4
-rw-r--r--lib/gitlab/ldap/user.rb7
2 files changed, 8 insertions, 3 deletions
diff --git a/lib/gitlab/ldap/config.rb b/lib/gitlab/ldap/config.rb
index d2ffa2e1fe8..101a3285f4b 100644
--- a/lib/gitlab/ldap/config.rb
+++ b/lib/gitlab/ldap/config.rb
@@ -84,6 +84,10 @@ module Gitlab
options['block_auto_created_users']
end
+ def attributes
+ options['attributes']
+ end
+
protected
def base_config
Gitlab.config.ldap
diff --git a/lib/gitlab/ldap/user.rb b/lib/gitlab/ldap/user.rb
index e568b0e3b31..e5023f5da11 100644
--- a/lib/gitlab/ldap/user.rb
+++ b/lib/gitlab/ldap/user.rb
@@ -68,12 +68,13 @@ module Gitlab
Gitlab::LDAP::Access.allowed?(gl_user)
end
- def ldap_config
- Gitlab::LDAP::Config.new(auth_hash.provider)
+ def ldap_config(provider = auth_hash.provider)
+ Gitlab::LDAP::Config.new(provider)
end
def auth_hash=(auth_hash)
- @auth_hash = Gitlab::LDAP::AuthHash.new(auth_hash, ldap_config)
+ config = ldap_config(auth_hash.provider)
+ @auth_hash = Gitlab::LDAP::AuthHash.new(auth_hash, config)
end
end
end