Skip to content

Add scanned_resources CSV path to Security Report Summary

What does this MR do?

!35949 (merged) added scannedResourcesCsvPath to securityReportSummary

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

however that MR returned NULL as the path, to allow the frontend team to continue working.

This MR assigns the path to that type, so the frontend can direct users to download their CSV scanned resources report.

The response to the GraphQL query:

{
  "data": {
    "project": {
      "pipeline": {
        "securityReportSummary": {
          "dast": {
            "scannedResourcesCsvPath": "/root/rails-goat/-/security/scanned_resources.csv?pipeline_id=79"
          }
        }
      }
    }
  }
}

This MR 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 Craig Smith

Merge request reports

Loading