DAST Scanner Profiles implementation - Form MVC - Edit profiles [parent issue]
- Main issue: #222767 (closed)
Summary
This issue is for implementing the ability to create DAST Scanner Profiles.
Implementation plan
| backend issue | frontend issue |
|---|---|
| #235408 (closed) | #235414 (closed) |
Decisions
GraphQL
Mutation for updating a DAST Scanner Profile
mutation dastScannerProfileUpdate(
$id: DastScannerProfileID!
$fullPath: ID!
$profileName: String!
$spiderTimeout: Int
$targetTimeout: Int
) {
project(fullPath: $fullPath) {
dastSiteProfileUpdate(
input: {
profileName: $profileName
spiderTimeout: $spiderTimeout
targetTimeout: $targetTimeout
}
) {
id,
errors
}
}
}
Edited by Paul Gascou-Vaillancourt