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

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

module Types
  class CommitEncodingEnum < BaseEnum
    graphql_name 'CommitEncoding'

    value 'TEXT', description: 'Text encoding', value: :text
    value 'BASE64', description: 'Base64 encoding', value: :base64
  end
end