debian-mirror-gitlab/app/graphql/types/branch_protections/push_access_level_type.rb

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

12 lines
345 B
Ruby
Raw Normal View History

2022-10-11 01:57:18 +05:30
# 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