Commit 04803174 authored by Alejandro Rodríguez's avatar Alejandro Rodríguez

Change `return`s for `next`s to please rubocop (behaviour is the same)

parent 818ad89e
...@@ -53,7 +53,7 @@ module API ...@@ -53,7 +53,7 @@ module API
key = user_project.deploy_keys.find_by(key: attrs[:key]) key = user_project.deploy_keys.find_by(key: attrs[:key])
if key if key
present key, with: Entities::SSHKey present key, with: Entities::SSHKey
return next
end end
# Check for available deploy keys in other projects # Check for available deploy keys in other projects
...@@ -61,7 +61,7 @@ module API ...@@ -61,7 +61,7 @@ module API
if key if key
user_project.deploy_keys << key user_project.deploy_keys << key
present key, with: Entities::SSHKey present key, with: Entities::SSHKey
return next
end end
end end
......
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