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
No related merge requests found
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