summaryrefslogtreecommitdiff
path: root/app/graphql/types/snippets/visibility_scopes_enum.rb
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