2ceffce190
In 12.0, we turned the feature flag on that effectively turned off the --max-count flag for the count diverging commits call. Since we have commit graphs turned on, this did not affect preformance negatively. Thus, we want to deprecate the call that passes --max-count
11 lines
269 B
Ruby
11 lines
269 B
Ruby
# 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
|