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: ddcc005eaf27f2e101e9759d5359609a204de4ef (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', description: 'The snippet is visible only to the snippet creator.', value: 'are_private'
      value 'internal', description: 'The snippet is visible for any logged in user except external users.', value: 'are_internal'
      value 'public', description: 'The snippet can be accessed without any authentication.', value: 'are_public'
    end
  end
end