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
0
Merge Requests
0
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
Kazuhiko Shiozaki
gitlab-ce
Commits
84d57bc7
Commit
84d57bc7
authored
Sep 16, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make code clearer
parent
bed263f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
11 deletions
+9
-11
lib/gitlab/ldap/auth_hash.rb
lib/gitlab/ldap/auth_hash.rb
+9
-11
No files found.
lib/gitlab/ldap/auth_hash.rb
View file @
84d57bc7
...
@@ -6,18 +6,16 @@ module Gitlab
...
@@ -6,18 +6,16 @@ module Gitlab
private
private
def
get_info
(
key
)
def
get_info
(
key
)
raw_key
=
ldap_config
.
attributes
[
key
]
attributes
=
ldap_config
.
attributes
[
key
]
return
super
unless
raw_key
return
super
unless
attributes
value
=
attributes
=
Array
(
attributes
)
case
raw_key
when
String
value
=
nil
get_raw
(
raw_key
)
attributes
.
each
do
|
attribute
|
when
Array
value
=
get_raw
(
attribute
)
raw_key
.
inject
(
nil
)
{
|
value
,
key
|
value
||
get_raw
(
key
).
presence
}
break
if
value
.
present?
else
end
nil
end
return
super
unless
value
return
super
unless
value
...
...
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