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
|
2018-01-05 11:52:06 -05:00
|
|
|
|
|
|
|
def diverging_count_label(count)
|
|
|
|
if count >= Repository::MAX_DIVERGING_COUNT
|
|
|
|
"#{Repository::MAX_DIVERGING_COUNT - 1}+"
|
|
|
|
else
|
|
|
|
count.to_s
|
|
|
|
end
|
|
|
|
end
|
2014-05-22 07:38:48 -04:00
|
|
|
end
|