BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
73a3df4d
Commit
73a3df4d
authored
Sep 23, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix LDAP attribute mapping
parent
cfe66340
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
auth_hash.rb
lib/gitlab/ldap/auth_hash.rb
+2
-1
auth_hash_spec.rb
spec/lib/gitlab/ldap/auth_hash_spec.rb
+6
-6
No files found.
lib/gitlab/ldap/auth_hash.rb
View file @
73a3df4d
...
...
@@ -6,7 +6,7 @@ module Gitlab
private
def
get_info
(
key
)
attributes
=
ldap_config
.
attributes
[
key
]
attributes
=
ldap_config
.
attributes
[
key
.
to_s
]
return
super
unless
attributes
attributes
=
Array
(
attributes
)
...
...
@@ -14,6 +14,7 @@ module Gitlab
value
=
nil
attributes
.
each
do
|
attribute
|
value
=
get_raw
(
attribute
)
value
=
value
.
first
if
value
break
if
value
.
present?
end
...
...
spec/lib/gitlab/ldap/auth_hash_spec.rb
View file @
73a3df4d
...
...
@@ -24,10 +24,10 @@ describe Gitlab::LDAP::AuthHash do
let
(
:raw_info
)
do
{
uid:
'123456'
,
email:
'johnsmith@example.com'
,
cn:
'Smith, J.'
,
fullName:
'John Smith'
uid:
[
'123456'
]
,
email:
[
'johnsmith@example.com'
]
,
cn:
[
'Smith, J.'
]
,
fullName:
[
'John Smith'
]
}
end
...
...
@@ -45,8 +45,8 @@ describe Gitlab::LDAP::AuthHash do
context
"with overridden attributes"
do
let
(
:attributes
)
do
{
username:
[
'mail'
,
'email'
],
name:
'fullName'
'username'
=>
[
'mail'
,
'email'
],
'name'
=>
'fullName'
}
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment