summaryrefslogtreecommitdiff
path: root/app/graphql/types/branch_protections/merge_access_level_type.rb
blob: 85295e1ba25d5a9ea486b43903c762eb5b25ac4a (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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