Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
4a64d35c
Commit
4a64d35c
authored
Feb 05, 2021
by
Philip Cunningham
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make pipelineUrl nullable in DastProfileCreate
This field was mistakenly marked as being non-null.
parent
5caf8fc8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
10 deletions
+6
-10
doc/api/graphql/reference/gitlab_schema.graphql
doc/api/graphql/reference/gitlab_schema.graphql
+1
-1
doc/api/graphql/reference/gitlab_schema.json
doc/api/graphql/reference/gitlab_schema.json
+3
-7
doc/api/graphql/reference/index.md
doc/api/graphql/reference/index.md
+1
-1
ee/app/graphql/mutations/dast/profiles/create.rb
ee/app/graphql/mutations/dast/profiles/create.rb
+1
-1
No files found.
doc/api/graphql/reference/gitlab_schema.graphql
View file @
4a64d35c
...
...
@@ -5737,7 +5737,7 @@ type DastProfileCreatePayload {
"""
The
URL
of
the
pipeline
that
was
created
.
Requires
`
runAfterCreate
`
to
be
set
to
`
true
`.
"""
pipelineUrl
:
String
!
pipelineUrl
:
String
}
"""
...
...
doc/api/graphql/reference/gitlab_schema.json
View file @
4a64d35c
...
...
@@ -15668,13 +15668,9 @@
],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "String",
"ofType": null
}
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
doc/api/graphql/reference/index.md
View file @
4a64d35c
...
...
@@ -914,7 +914,7 @@ Autogenerated return type of DastProfileCreate.
|
`clientMutationId`
| String | A unique identifier for the client performing the mutation. |
|
`dastProfile`
| DastProfile | The created profile. |
|
`errors`
| String! => Array | Errors encountered during execution of the mutation. |
|
`pipelineUrl`
| String
!
| The URL of the pipeline that was created. Requires
`runAfterCreate`
to be set to
`true`
. |
|
`pipelineUrl`
| String | The URL of the pipeline that was created. Requires
`runAfterCreate`
to be set to
`true`
. |
### DastScannerProfile
...
...
ee/app/graphql/mutations/dast/profiles/create.rb
View file @
4a64d35c
...
...
@@ -13,7 +13,7 @@ module Mutations
description:
'The created profile.'
field
:pipeline_url
,
GraphQL
::
STRING_TYPE
,
null:
fals
e
,
null:
tru
e
,
description:
'The URL of the pipeline that was created. Requires `runAfterCreate` to be set to `true`.'
argument
:full_path
,
GraphQL
::
ID_TYPE
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment