Commit 4dce5fa2 authored by Pablo Carranza's avatar Pablo Carranza

Fix rubocop complain

parent c1cc3216
...@@ -58,9 +58,9 @@ module API ...@@ -58,9 +58,9 @@ module API
# Get a ssh key using the fingerprint # Get a ssh key using the fingerprint
# #
get "/authorized_keys" do get "/authorized_keys" do
fingerprint = params.fetch(:fingerprint) { fingerprint = params.fetch(:fingerprint) do
Gitlab::InsecureKeyFingerprint.new(params.fetch(:key)).fingerprint Gitlab::InsecureKeyFingerprint.new(params.fetch(:key)).fingerprint
} end
key = Key.find_by(fingerprint: fingerprint) key = Key.find_by(fingerprint: fingerprint)
not_found!("Key") if key.nil? not_found!("Key") if key.nil?
present key, with: Entities::SSHKey present key, with: Entities::SSHKey
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment