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
c855e61a
Commit
c855e61a
authored
Jun 18, 2020
by
Rajendra Kadam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use GpgKeys::CreateService when a user creates gpg keys for themselves via the API
parent
318d5541
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/api/users.rb
lib/api/users.rb
+2
-2
No files found.
lib/api/users.rb
View file @
c855e61a
...
...
@@ -792,9 +792,9 @@ module API
requires
:key
,
type:
String
,
desc:
'The new GPG key'
end
post
'gpg_keys'
do
key
=
current_user
.
gpg_keys
.
new
(
declared_params
)
key
=
::
GpgKeys
::
CreateService
.
new
(
current_user
,
declared_params
(
include_missing:
false
)).
execute
if
key
.
save
if
key
.
persisted?
present
key
,
with:
Entities
::
GpgKey
else
render_validation_error!
(
key
)
...
...
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