summaryrefslogtreecommitdiff
path: root/app/helpers/branches_helper.rb
blob: 3d0f9e18d78c50b99414955d9a94790f4303ed04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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

  def can_push_branch?(project, branch_name)
    return false unless project.repository.branch_names.include?(branch_name)

    ::Gitlab::GitAccess.new(current_user, project).can_push_to_branch?(branch_name)
  end

  def can_rebase?(project, branch_name)
    if project.protected_branch? branch_name
      can?(current_user, :push_code_to_protected_branches, project)
    elsif can?(current_user, :push_code, project)
      true
    else
      false
    end
  end
end