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

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

module Types
  module ErrorTracking
    class SentryErrorStatusEnum < ::Types::BaseEnum
      graphql_name 'SentryErrorStatus'
      description 'State of a Sentry error'

      value 'RESOLVED', value: 'resolved', description: 'Error has been resolved.'
      value 'RESOLVED_IN_NEXT_RELEASE', value: 'resolvedInNextRelease', description: 'Error has been ignored until next release.'
      value 'UNRESOLVED', value: 'unresolved', description: 'Error is unresolved.'
      value 'IGNORED', value: 'ignored', description: 'Error has been ignored.'
    end
  end
end