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

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

module Types
  class RefTypeEnum < BaseEnum
    graphql_name 'RefType'
    description 'Type of ref'

    value 'HEADS', description: 'Ref type for branches.', value: 'heads'
    value 'TAGS', description: 'Ref type for tags.', value: 'tags'
  end
end