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

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

module Types
  module Snippets
    class VisibilityScopesEnum < BaseEnum
      value 'private',  value: 'are_private'
      value 'internal', value: 'are_internal'
      value 'public',   value: 'are_public'
    end
  end
end