diff options
Diffstat (limited to 'app/graphql/mutations/alert_management')
-rw-r--r-- | app/graphql/mutations/alert_management/prometheus_integration/create.rb | 2 | ||||
-rw-r--r-- | app/graphql/mutations/alert_management/prometheus_integration/update.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/mutations/alert_management/prometheus_integration/create.rb b/app/graphql/mutations/alert_management/prometheus_integration/create.rb index 87e6bc46937..c6dc85dc07c 100644 --- a/app/graphql/mutations/alert_management/prometheus_integration/create.rb +++ b/app/graphql/mutations/alert_management/prometheus_integration/create.rb @@ -18,7 +18,7 @@ module Mutations argument :api_url, GraphQL::STRING_TYPE, required: true, - description: 'Endpoint at which prometheus can be queried.' + description: 'Endpoint at which Prometheus can be queried.' def resolve(args) project = authorized_find!(args[:project_path]) diff --git a/app/graphql/mutations/alert_management/prometheus_integration/update.rb b/app/graphql/mutations/alert_management/prometheus_integration/update.rb index 62fb81bca5a..7594766176f 100644 --- a/app/graphql/mutations/alert_management/prometheus_integration/update.rb +++ b/app/graphql/mutations/alert_management/prometheus_integration/update.rb @@ -16,7 +16,7 @@ module Mutations argument :api_url, GraphQL::STRING_TYPE, required: false, - description: "Endpoint at which prometheus can be queried." + description: "Endpoint at which Prometheus can be queried." def resolve(args) integration = authorized_find!(id: args[:id]) |