From 3b9d2b55c1947e93814ff87d3cf3b473d366cd4e Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 24 Jan 2023 14:26:10 +0100 Subject: dashboard: include report elements in the BugReport This will help optimize the detection and addition of missing fields to the existing reports. --- dashboard/dashapi/dashapi.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'dashboard/dashapi') diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index 4c46d1582..17cd8df91 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -412,6 +412,11 @@ type BugReport struct { BisectFix *BisectResult Assets []Asset Subsystems []BugSubsystem + ReportElements *ReportElements +} + +type ReportElements struct { + GuiltyFiles []string } type BugSubsystem struct { -- cgit mrf-deployment