gitlab-org--gitlab-foss/app/helpers/branches_helper.rb
John Cai 2ceffce190 Deprecate diverging commit count with max parameter
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
2019-07-02 17:07:33 -07:00

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