Change `return`s for `next`s to please rubocop (behaviour is the same)
This commit is contained in:
parent
818ad89ea5
commit
0480317433
|
|
@ -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
|
||||||
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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue