debian-mirror-gitlab/app/helpers/branches_helper.rb
2019-09-30 21:07:59 +05:30

12 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