debian-mirror-gitlab/app/graphql/types/branch_protections/merge_access_level_type.rb
2022-10-11 01:57:18 +05:30

11 lines
349 B
Ruby

# frozen_string_literal: true
module Types
module BranchProtections
class MergeAccessLevelType < BaseAccessLevelType # rubocop:disable Graphql/AuthorizeTypes
graphql_name 'MergeAccessLevel'
description 'Represents the merge access level of a branch protection.'
accepts ::ProtectedBranch::MergeAccessLevel
end
end
end