diff options
Diffstat (limited to 'lib/api/users.rb')
-rw-r--r-- | lib/api/users.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/api/users.rb b/lib/api/users.rb index b8c60f1969c..bf1fe4fc4a8 100644 --- a/lib/api/users.rb +++ b/lib/api/users.rb @@ -346,8 +346,9 @@ module API key = user.gpg_keys.find_by(id: params[:key_id]) not_found!('GPG Key') unless key - status 204 key.destroy + + no_content! end # rubocop: enable CodeReuse/ActiveRecord @@ -760,8 +761,9 @@ module API key = current_user.gpg_keys.find_by(id: params[:key_id]) not_found!('GPG Key') unless key - status 204 key.destroy + + no_content! end # rubocop: enable CodeReuse/ActiveRecord |