blob: c759882d7f833dc26bfa901a091bd2feed18927b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# 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
end
|