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

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: 9cab2664db8139d2c3ac719f4cbac1929aa8b4a4 (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 StatusEnum < BaseEnum
        graphql_name 'CodequalityReportsComparerReportStatus'
        description 'Report comparison status'

        value 'SUCCESS', value: 'success', description: 'Report successfully generated.'
        value 'FAILED', value: 'failed', description: 'Report failed to generate.'
        value 'NOT_FOUND', value: 'not_found', description: 'Head report or base report not found.'
      end
    end
  end
end