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
Jérome Perrin
gitlab-ce
Commits
3f3b036d
Commit
3f3b036d
authored
Jun 03, 2016
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use public_send
parent
03bec6b0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
lib/gitlab/auth.rb
lib/gitlab/auth.rb
+1
-2
No files found.
lib/gitlab/auth.rb
View file @
3f3b036d
...
@@ -49,8 +49,7 @@ module Gitlab
...
@@ -49,8 +49,7 @@ module Gitlab
elsif
Service
.
available_services_names
.
include?
(
underscored_service
)
elsif
Service
.
available_services_names
.
include?
(
underscored_service
)
# We treat underscored_service as a trusted input because it is included
# We treat underscored_service as a trusted input because it is included
# in the Service.available_services_names whitelist.
# in the Service.available_services_names whitelist.
service_method
=
"
#{
underscored_service
}
_service"
service
=
project
.
public_send
(
"
#{
underscored_service
}
_service"
)
service
=
project
.
send
(
service_method
)
service
&&
service
.
activated?
&&
service
.
valid_token?
(
password
)
service
&&
service
.
activated?
&&
service
.
valid_token?
(
password
)
end
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