2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-05-22 07:38:48 -04:00
|
|
|
module BranchesHelper
|
2016-06-10 11:43:25 -04:00
|
|
|
def project_branches
|
|
|
|
options_for_select(@project.repository.branch_names, @project.default_branch)
|
|
|
|
end
|
2017-04-05 13:59:46 -04:00
|
|
|
|
|
|
|
def protected_branch?(project, branch)
|
|
|
|
ProtectedBranch.protected?(project, branch.name)
|
|
|
|
end
|
2014-05-22 07:38:48 -04:00
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
|
|
|
BranchesHelper.prepend_if_ee('EE::BranchesHelper')
|