Commit 271228b7 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'djadmin-dast-tooltip' into 'master'

Update tooltip and description for spider timeout

See merge request gitlab-org/gitlab!41956
parents 79dbf467 81cda8a3
...@@ -3048,7 +3048,7 @@ type DastScannerProfile { ...@@ -3048,7 +3048,7 @@ type DastScannerProfile {
profileName: String profileName: String
""" """
The maximum number of seconds allowed for the spider to traverse the site The maximum number of minutes allowed for the spider to traverse the site
""" """
spiderTimeout: Int spiderTimeout: Int
...@@ -3098,7 +3098,7 @@ input DastScannerProfileCreateInput { ...@@ -3098,7 +3098,7 @@ input DastScannerProfileCreateInput {
profileName: String! profileName: String!
""" """
The maximum number of seconds allowed for the spider to traverse the site. The maximum number of minutes allowed for the spider to traverse the site.
""" """
spiderTimeout: Int spiderTimeout: Int
...@@ -3213,7 +3213,7 @@ input DastScannerProfileUpdateInput { ...@@ -3213,7 +3213,7 @@ input DastScannerProfileUpdateInput {
profileName: String! profileName: String!
""" """
The maximum number of seconds allowed for the spider to traverse the site. The maximum number of minutes allowed for the spider to traverse the site.
""" """
spiderTimeout: Int! spiderTimeout: Int!
......
...@@ -8289,7 +8289,7 @@ ...@@ -8289,7 +8289,7 @@
}, },
{ {
"name": "spiderTimeout", "name": "spiderTimeout",
"description": "The maximum number of seconds allowed for the spider to traverse the site", "description": "The maximum number of minutes allowed for the spider to traverse the site",
"args": [ "args": [
], ],
...@@ -8426,7 +8426,7 @@ ...@@ -8426,7 +8426,7 @@
}, },
{ {
"name": "spiderTimeout", "name": "spiderTimeout",
"description": "The maximum number of seconds allowed for the spider to traverse the site.", "description": "The maximum number of minutes allowed for the spider to traverse the site.",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "Int", "name": "Int",
...@@ -8747,7 +8747,7 @@ ...@@ -8747,7 +8747,7 @@
}, },
{ {
"name": "spiderTimeout", "name": "spiderTimeout",
"description": "The maximum number of seconds allowed for the spider to traverse the site.", "description": "The maximum number of minutes allowed for the spider to traverse the site.",
"type": { "type": {
"kind": "NON_NULL", "kind": "NON_NULL",
"name": null, "name": null,
...@@ -519,7 +519,7 @@ Represents a DAST scanner profile. ...@@ -519,7 +519,7 @@ Represents a DAST scanner profile.
| `globalId` | DastScannerProfileID! | ID of the DAST scanner profile | | `globalId` | DastScannerProfileID! | ID of the DAST scanner profile |
| `id` **{warning-solid}** | ID! | **Deprecated:** Use `global_id`. Deprecated in 13.4 | | `id` **{warning-solid}** | ID! | **Deprecated:** Use `global_id`. Deprecated in 13.4 |
| `profileName` | String | Name of the DAST scanner profile | | `profileName` | String | Name of the DAST scanner profile |
| `spiderTimeout` | Int | The maximum number of seconds allowed for the spider to traverse the site | | `spiderTimeout` | Int | The maximum number of minutes allowed for the spider to traverse the site |
| `targetTimeout` | Int | The maximum number of seconds allowed for the site under test to respond to a request | | `targetTimeout` | Int | The maximum number of seconds allowed for the site under test to respond to a request |
## DastScannerProfileCreatePayload ## DastScannerProfileCreatePayload
......
...@@ -169,7 +169,7 @@ export default { ...@@ -169,7 +169,7 @@ export default {
modalOkTitle: __('Discard'), modalOkTitle: __('Discard'),
modalCancelTitle: __('Cancel'), modalCancelTitle: __('Cancel'),
spiderTimeoutTooltip: s__( spiderTimeoutTooltip: s__(
'DastProfiles|The maximum number of seconds allowed for the spider to traverse the site.', 'DastProfiles|The maximum number of minutes allowed for the spider to traverse the site.',
), ),
targetTimeoutTooltip: s__( targetTimeoutTooltip: s__(
'DastProfiles|The maximum number of seconds allowed for the site under test to respond to a request.', 'DastProfiles|The maximum number of seconds allowed for the site under test to respond to a request.',
......
...@@ -26,7 +26,7 @@ module Mutations ...@@ -26,7 +26,7 @@ module Mutations
argument :spider_timeout, GraphQL::INT_TYPE, argument :spider_timeout, GraphQL::INT_TYPE,
required: false, required: false,
description: 'The maximum number of seconds allowed for the spider to traverse the site.' description: 'The maximum number of minutes allowed for the spider to traverse the site.'
argument :target_timeout, GraphQL::INT_TYPE, argument :target_timeout, GraphQL::INT_TYPE,
required: false, required: false,
......
...@@ -25,7 +25,7 @@ module Mutations ...@@ -25,7 +25,7 @@ module Mutations
argument :spider_timeout, GraphQL::INT_TYPE, argument :spider_timeout, GraphQL::INT_TYPE,
required: true, required: true,
description: 'The maximum number of seconds allowed for the spider to traverse the site.' description: 'The maximum number of minutes allowed for the spider to traverse the site.'
argument :target_timeout, GraphQL::INT_TYPE, argument :target_timeout, GraphQL::INT_TYPE,
required: true, required: true,
......
...@@ -20,7 +20,7 @@ module Types ...@@ -20,7 +20,7 @@ module Types
method: :name method: :name
field :spider_timeout, GraphQL::INT_TYPE, null: true, field :spider_timeout, GraphQL::INT_TYPE, null: true,
description: 'The maximum number of seconds allowed for the spider to traverse the site' description: 'The maximum number of minutes allowed for the spider to traverse the site'
field :target_timeout, GraphQL::INT_TYPE, null: true, field :target_timeout, GraphQL::INT_TYPE, null: true,
description: 'The maximum number of seconds allowed for the site under test to respond to a request' description: 'The maximum number of seconds allowed for the site under test to respond to a request'
......
...@@ -7918,10 +7918,10 @@ msgstr "" ...@@ -7918,10 +7918,10 @@ msgstr ""
msgid "DastProfiles|Text file validation" msgid "DastProfiles|Text file validation"
msgstr "" msgstr ""
msgid "DastProfiles|The maximum number of seconds allowed for the site under test to respond to a request." msgid "DastProfiles|The maximum number of minutes allowed for the spider to traverse the site."
msgstr "" msgstr ""
msgid "DastProfiles|The maximum number of seconds allowed for the spider to traverse the site." msgid "DastProfiles|The maximum number of seconds allowed for the site under test to respond to a request."
msgstr "" msgstr ""
msgid "DastProfiles|Validate" msgid "DastProfiles|Validate"
......
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