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
|
2020-08-12 20:10:06 -04:00
|
|
|
|
|
|
|
def access_levels_data(access_levels)
|
|
|
|
return [] unless access_levels
|
|
|
|
|
|
|
|
access_levels.map do |level|
|
2020-11-13 10:09:24 -05:00
|
|
|
if level.type == :deploy_key
|
|
|
|
{ id: level.id, type: level.type, deploy_key_id: level.deploy_key_id }
|
|
|
|
else
|
|
|
|
{ id: level.id, type: :role, access_level: level.access_level }
|
|
|
|
end
|
2020-08-12 20:10:06 -04:00
|
|
|
end
|
|
|
|
end
|
2014-05-22 07:38:48 -04:00
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
BranchesHelper.prepend_mod_with('BranchesHelper')
|