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: c51c1e864fb871be62f11f8bc70113142d92b9b2 (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