Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
062258df
Commit
062258df
authored
Sep 16, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LDAP: Use first value instead of joined one for uid, cn
parent
737bdc30
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
lib/gitlab/ldap/group.rb
lib/gitlab/ldap/group.rb
+1
-1
lib/gitlab/ldap/person.rb
lib/gitlab/ldap/person.rb
+2
-2
No files found.
lib/gitlab/ldap/group.rb
View file @
062258df
...
...
@@ -16,7 +16,7 @@ module Gitlab
end
def
cn
entry
.
cn
.
join
(
" "
)
entry
.
cn
.
first
end
def
name
...
...
lib/gitlab/ldap/person.rb
View file @
062258df
...
...
@@ -20,11 +20,11 @@ module Gitlab
end
def
name
entry
.
cn
.
join
(
" "
)
entry
.
cn
.
first
end
def
uid
entry
.
send
(
config
.
uid
).
join
(
" "
)
entry
.
send
(
config
.
uid
).
first
end
def
username
...
...
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