Skip to content

DAST Scanner Profiles implementation - Form MVC - Basic form [parent issue]

Summary

This issue is for implementing the ability to create DAST Scanner Profiles.

Designs

Implementation plan

backend issue frontend issue
#235406 (closed) #235404 (closed)

Decisions

GraphQL

Mutation for creating a DAST Scanner Profile

mutation{
  dastScannerProfileCreate(
    input: {
      fullPath: "namespace/project"
      profileName: "test"
      spiderTimeout: 123
      targetTimeout: 123
    }
  ) {
    id
    errors
  }
}
Edited by Paul Gascou-Vaillancourt