Skip to content

Changes the data model for counts on the Group Security Dashboard

Sam Beckham requested to merge revert-1d1e95c8 into master

What does this MR do?

!8972 (merged) introduced a change to the way data is returned for the group security dashboard. Intead of returning data like this:

{
  "sast": {
     "critical": 2,
     "high": 4,
     "low": 7,
     "medium": 8,
     "unknown": 9
  },
  "dependency_scanning": {
     "critical": 2,
     "high": 3,
     "low": 9,
     "medium": 4,
     "unknown": 7
  },
}

We just get data based on our filters, like this:

{
   "critical": 2,
   "high": 4,
   "low": 7,
   "medium": 8,
   "unknown": 0
}

This MR fixes the frontend so it can parse the new data format correctly.

What are the relevant issue numbers?

Does this MR meet the acceptance criteria?

Edited by Sam Beckham

Merge request reports