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/mutations/metrics/dashboard/annotations/delete.rb')
-rw-r--r--app/graphql/mutations/metrics/dashboard/annotations/delete.rb14
1 files changed, 3 insertions, 11 deletions
diff --git a/app/graphql/mutations/metrics/dashboard/annotations/delete.rb b/app/graphql/mutations/metrics/dashboard/annotations/delete.rb
index 32047cda213..61fcf8e0b13 100644
--- a/app/graphql/mutations/metrics/dashboard/annotations/delete.rb
+++ b/app/graphql/mutations/metrics/dashboard/annotations/delete.rb
@@ -13,19 +13,11 @@ module Mutations
required: true,
description: 'Global ID of the annotation to delete.'
+ # rubocop:disable Lint/UnusedMethodArgument
def resolve(id:)
- raise_resource_not_available_error! if Feature.enabled?(:remove_monitor_metrics)
-
- annotation = authorized_find!(id: id)
-
- result = ::Metrics::Dashboard::Annotations::DeleteService.new(context[:current_user], annotation).execute
-
- errors = Array.wrap(result[:message])
-
- {
- errors: errors
- }
+ raise_resource_not_available_error!
end
+ # rubocop:enable Lint/UnusedMethodArgument
end
end
end