summaryrefslogtreecommitdiff
path: root/app/helpers/branches_helper.rb
blob: 2a0242fe2fa8e58f8f8a98848a11d1a7b4d0b9d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module BranchesHelper
  def project_branches
    options_for_select(@project.repository.branch_names, @project.default_branch)
  end

  def protected_branch?(project, branch)
    ProtectedBranch.protected?(project, branch.name)
  end

  def access_levels_data(access_levels)
    return [] unless access_levels

    access_levels.map do |level|
      { id: level.id, type: :role, access_level: level.access_level }
    end
  end
end

BranchesHelper.prepend_if_ee('EE::BranchesHelper')