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

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

module Types
  module Security
    module CodequalityReportsComparer
      class ReportGenerationStatusEnum < BaseEnum
        graphql_name 'CodequalityReportsComparerReportGenerationStatus'
        description 'Represents the generation status of the compared codequality report.'

        value 'PARSED', value: :parsed, description: 'Report was generated.'
        value 'PARSING', value: :parsing, description: 'Report is being generated.'
        value 'ERROR', value: :error, description: 'An error happened while generating the report.'
      end
    end
  end
end