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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/alert_management/alert_type.rb')
-rw-r--r--app/graphql/types/alert_management/alert_type.rb14
1 files changed, 12 insertions, 2 deletions
diff --git a/app/graphql/types/alert_management/alert_type.rb b/app/graphql/types/alert_management/alert_type.rb
index c17406b3e56..e85d0213613 100644
--- a/app/graphql/types/alert_management/alert_type.rb
+++ b/app/graphql/types/alert_management/alert_type.rb
@@ -8,8 +8,8 @@ module Types
present_using ::AlertManagement::AlertPresenter
- implements(Types::Notes::NoteableInterface)
- implements(Types::TodoableInterface)
+ implements Types::Notes::NoteableInterface
+ implements Types::TodoableInterface
authorize :read_alert_management_alert
@@ -111,6 +111,12 @@ module Types
null: true,
description: 'Assignees of the alert.'
+ field :metrics_dashboard_url,
+ GraphQL::Types::String,
+ null: true,
+ description: 'URL for metrics embed for the alert.',
+ deprecated: { reason: 'Returns no data. Underlying feature was removed in 16.0',
+ milestone: '16.0' }
field :runbook,
GraphQL::Types::String,
null: true,
@@ -136,6 +142,10 @@ module Types
method: :details_url,
null: false,
description: 'URL of the alert.'
+
+ def metrics_dashboard_url
+ nil
+ end
end
end
end