summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci/job_artifact_file_type_enum.rb
blob: 4b484dec590943f71fd61deae292aa655c139b6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Types
  module Ci
    class JobArtifactFileTypeEnum < BaseEnum
      graphql_name 'JobArtifactFileType'

      ::Ci::JobArtifact::TYPE_AND_FORMAT_PAIRS.keys.each do |file_type|
        value file_type.to_s.upcase, value: file_type.to_s
      end
    end
  end
end