Skip to content

Add ability to fetch DastSiteProfile via GraphQL

Philip Cunningham requested to merge dast-site-profile-graphql-query into master

What does this MR do?

adds new graphql field to project in order to allow the frontend to retrieve individual dast_site_profiles.

query project($fullPath: ID!, $id: ID!) {
  project(fullPath: $fullPath) {
    dastSiteProfile(id: $id) {
      id
      profileName
      targetUrl
      validationStatus
    }
  }
}

Related Issue(s)

follows from discussion in !38315 (merged)

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by Philip Cunningham

Merge request reports