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/alert_management/prometheus_integration/update.rb')
-rw-r--r--app/graphql/mutations/alert_management/prometheus_integration/update.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/graphql/mutations/alert_management/prometheus_integration/update.rb b/app/graphql/mutations/alert_management/prometheus_integration/update.rb
index 50aafdc26a6..593624aaafd 100644
--- a/app/graphql/mutations/alert_management/prometheus_integration/update.rb
+++ b/app/graphql/mutations/alert_management/prometheus_integration/update.rb
@@ -7,16 +7,16 @@ module Mutations
graphql_name 'PrometheusIntegrationUpdate'
argument :id, Types::GlobalIDType[::Integrations::Prometheus],
- required: true,
- description: "ID of the integration to mutate."
+ required: true,
+ description: "ID of the integration to mutate."
argument :active, GraphQL::Types::Boolean,
- required: false,
- description: "Whether the integration is receiving alerts."
+ required: false,
+ description: "Whether the integration is receiving alerts."
argument :api_url, GraphQL::Types::String,
- required: false,
- description: "Endpoint at which Prometheus can be queried."
+ required: false,
+ description: "Endpoint at which Prometheus can be queried."
def resolve(args)
integration = authorized_find!(id: args[:id])