Welcome to mirror list, hosted at ThFree Co, Russian Federation.

push_access_level_type.rb « branch_protections « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bfbdc4edbea1d9e331e60a68a1d89b2604688fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Types
  module BranchProtections
    class PushAccessLevelType < BaseAccessLevelType # rubocop:disable Graphql/AuthorizeTypes
      graphql_name 'PushAccessLevel'
      description 'Represents the push access level of a branch protection.'
      accepts ::ProtectedBranch::PushAccessLevel
    end
  end
end