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,13 +29,10 @@ class Projects::ForksController < Projects::ApplicationController
end
def new
if current_user.nil?
authenticate_user!
else
return authenticate_user! unless current_user
@namespaces = current_user.manageable_namespaces
@namespaces.delete(@project.namespace)
end
end
def create
namespace = Namespace.find(params[:namespace_key])