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

type_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: 0ddd73d278df392c9dc31e7b7927e2eb11ac4818 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Types
  module Snippets
    class TypeEnum < BaseEnum
      value 'personal', description: 'Snippet created independent of any project.', value: 'personal'
      value 'project', description: 'Snippet related to a specific project.', value: 'project'
    end
  end
end