debian-mirror-gitlab/app/helpers/protected_refs_helper.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
631 B
Ruby
Raw Permalink Normal View History

2023-07-09 08:55:56 +05:30
# frozen_string_literal: true
module ProtectedRefsHelper
include Gitlab::Utils::StrongMemoize
def protected_access_levels_for_dropdowns
{
create_access_levels: protected_access_level_dropdown_roles,
push_access_levels: protected_access_level_dropdown_roles,
merge_access_levels: protected_access_level_dropdown_roles
}
end
def protected_access_level_dropdown_roles
roles = ProtectedRef::AccessLevel.human_access_levels.map do |id, text|
{ id: id, text: text, before_divider: true }
end
{ roles: roles }
end
strong_memoize_attr(:protected_access_level_dropdown_roles)
end