Welcome to mirror list, hosted at ThFree Co, Russian Federation.

branches_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e08ffccb94c5e25d92c63454ce70928f52f0c0b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
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