Commit 5f5fe6f6 authored by Markus Koller's avatar Markus Koller

Merge branch '223812-fix-typo' into 'master'

Fix typo in description for VulnerabilityResolve mutation

See merge request gitlab-org/gitlab!42807
parents 2f70f5d9 b1c39089
...@@ -19238,7 +19238,7 @@ input VulnerabilityResolveInput { ...@@ -19238,7 +19238,7 @@ input VulnerabilityResolveInput {
clientMutationId: String clientMutationId: String
""" """
ID of the vulnerability to be resolveed ID of the vulnerability to be resolved
""" """
id: VulnerabilityID! id: VulnerabilityID!
} }
......
...@@ -56345,7 +56345,7 @@ ...@@ -56345,7 +56345,7 @@
"inputFields": [ "inputFields": [
{ {
"name": "id", "name": "id",
"description": "ID of the vulnerability to be resolveed", "description": "ID of the vulnerability to be resolved",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -14,7 +14,7 @@ module Mutations ...@@ -14,7 +14,7 @@ module Mutations
argument :id, argument :id,
::Types::GlobalIDType[::Vulnerability], ::Types::GlobalIDType[::Vulnerability],
required: true, required: true,
description: 'ID of the vulnerability to be resolveed' description: 'ID of the vulnerability to be resolved'
def resolve(id:) def resolve(id:)
vulnerability = authorized_find!(id: id) vulnerability = authorized_find!(id: id)
......
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