branches_helper.rb 483 字节
Newer Older
D
Dmitriy Zaporozhets 已提交
1 2
module BranchesHelper
  def can_remove_branch?(project, branch_name)
3 4 5 6 7 8 9 10 11 12 13
    if project.protected_branch? branch_name
      false
    elsif branch_name == project.repository.root_ref
      false
    else
      can?(current_user, :push_code, project)
    end
  end

  def can_push_branch?(project, branch_name)
    return false unless project.repository.branch_names.include?(branch_name)
14
    
15
    ::Gitlab::GitAccess.new(current_user, project).can_push_to_branch?(branch_name)
D
Dmitriy Zaporozhets 已提交
16 17
  end
end