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

module Types
  module Snippets
    class TypeEnum < BaseEnum
      value 'personal', value: 'personal'
      value 'project', value: 'project'
    end
  end
end