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
ac07c066
Commit
ac07c066
authored
5 years ago
by
James Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add saml provider to user build service
parent
ff648879
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
app/services/users/build_service.rb
app/services/users/build_service.rb
+5
-1
No files found.
app/services/users/build_service.rb
View file @
ac07c066
...
...
@@ -26,7 +26,7 @@ module Users
end
end
identity_attrs
=
params
.
slice
(
:extern_uid
,
:provider
)
identity_attrs
=
params
.
slice
(
*
identity_params
)
unless
identity_attrs
.
empty?
user
.
identities
.
build
(
identity_attrs
)
...
...
@@ -37,6 +37,10 @@ module Users
private
def
identity_params
[
:extern_uid
,
:provider
]
end
def
can_create_user?
(
current_user
.
nil?
&&
Gitlab
::
CurrentSettings
.
allow_signup?
)
||
current_user
&
.
admin?
end
...
...
This diff is collapsed.
Click to expand it.
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