Replace conditional with a guard statement.

This commit is contained in:
Cagdas Gerede 2016-11-12 11:16:07 +03:00
parent 4acedecc7b
commit 3b91c92719
1 changed files with 3 additions and 6 deletions

View File

@ -29,12 +29,9 @@ class Projects::ForksController < Projects::ApplicationController
end
def new
if current_user.nil?
authenticate_user!
else
@namespaces = current_user.manageable_namespaces
@namespaces.delete(@project.namespace)
end
return authenticate_user! unless current_user
@namespaces = current_user.manageable_namespaces
@namespaces.delete(@project.namespace)
end
def create