Commit eb88e224 authored by Marcel Amirault's avatar Marcel Amirault

Merge branch 'eread/fix-capitalization-of-url-graphql' into 'master'

Fix capitalization of URL in a GraphQL description

See merge request gitlab-org/gitlab!30808
parents 0b10caf3 fb2f8a56
...@@ -9,7 +9,7 @@ module Types ...@@ -9,7 +9,7 @@ module Types
field :id, GraphQL::ID_TYPE, null: false, field :id, GraphQL::ID_TYPE, null: false,
description: 'Internal ID of the Grafana integration' description: 'Internal ID of the Grafana integration'
field :grafana_url, GraphQL::STRING_TYPE, null: false, field :grafana_url, GraphQL::STRING_TYPE, null: false,
description: 'Url for the Grafana host for the Grafana integration' description: 'URL for the Grafana host for the Grafana integration'
field :enabled, GraphQL::BOOLEAN_TYPE, null: false, field :enabled, GraphQL::BOOLEAN_TYPE, null: false,
description: 'Indicates whether Grafana integration is enabled' description: 'Indicates whether Grafana integration is enabled'
field :created_at, Types::TimeType, null: false, field :created_at, Types::TimeType, null: false,
......
...@@ -3553,7 +3553,7 @@ type GrafanaIntegration { ...@@ -3553,7 +3553,7 @@ type GrafanaIntegration {
enabled: Boolean! enabled: Boolean!
""" """
Url for the Grafana host for the Grafana integration URL for the Grafana host for the Grafana integration
""" """
grafanaUrl: String! grafanaUrl: String!
......
...@@ -10207,7 +10207,7 @@ ...@@ -10207,7 +10207,7 @@
}, },
{ {
"name": "grafanaUrl", "name": "grafanaUrl",
"description": "Url for the Grafana host for the Grafana integration", "description": "URL for the Grafana host for the Grafana integration",
"args": [ "args": [
], ],
......
...@@ -577,7 +577,7 @@ Autogenerated return type of EpicTreeReorder ...@@ -577,7 +577,7 @@ Autogenerated return type of EpicTreeReorder
| --- | ---- | ---------- | | --- | ---- | ---------- |
| `createdAt` | Time! | Timestamp of the issue's creation | | `createdAt` | Time! | Timestamp of the issue's creation |
| `enabled` | Boolean! | Indicates whether Grafana integration is enabled | | `enabled` | Boolean! | Indicates whether Grafana integration is enabled |
| `grafanaUrl` | String! | Url for the Grafana host for the Grafana integration | | `grafanaUrl` | String! | URL for the Grafana host for the Grafana integration |
| `id` | ID! | Internal ID of the Grafana integration | | `id` | ID! | Internal ID of the Grafana integration |
| `token` **{warning-solid}** | String! | **Deprecated:** Plain text token has been masked for security reasons. Deprecated in 12.7 | | `token` **{warning-solid}** | String! | **Deprecated:** Plain text token has been masked for security reasons. Deprecated in 12.7 |
| `updatedAt` | Time! | Timestamp of the issue's last activity | | `updatedAt` | Time! | Timestamp of the issue's last activity |
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment