Skip to content
Snippets Groups Projects
Verified Commit e089b11b authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Add BranchesHelper

parent 88781783
No related branches found
No related tags found
1 merge request!6949gitlab.com issue #229 - no_avatar.png path in coffee
module BranchesHelper
def can_remove_branch?(project, branch_name)
if project.protected_branch? branch_name
false
elsif branch_name == project.repository.root_ref
false
else
can?(current_user, :push_code, project)
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment