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

11 lines
345 B
Ruby

# 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