Skip to content

Add scannedResourcesCsvPath to securityReportSummary

Craig Smith requested to merge add_nil_scanned_resources_csv_path_223673 into master

What does this MR do?

Merge requests that include a DAST scan, we want to allow the user to download a full list of URLs scanned by DAST in CSV format. The frontend will do this by providing a link to the appropriate CSV.

The MR creates the GraphQL endpoint the frontend will use to get the URL to the CSV file. However, since the CSV creation is not ready yet the endpoint will return NULL to allow the frontend to merge and deploy without breaking the MR page.

query{
  project(fullPath: "root/project"){
    pipeline(iid: "23"){
      securityReportSummary{
        dast{
++        scannedResourcesCsvPath
        }
      }
    }
  }
}

Relates to #223673 (closed)

Screenshots

Does this MR meet the acceptance criteria?

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 Peter Leitzen

Merge request reports

Loading