diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-01-24 14:26:10 +0100 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2023-01-26 11:08:32 +0100 |
| commit | 3b9d2b55c1947e93814ff87d3cf3b473d366cd4e (patch) | |
| tree | 3e6388d4a84c877b5cd6d94e392b7303730cf2e8 /dashboard/dashapi/dashapi.go | |
| parent | 651c142ca435e5f5dea7be48ac988b5c13d850d9 (diff) | |
dashboard: include report elements in the BugReport
This will help optimize the detection and addition of missing fields to
the existing reports.
Diffstat (limited to 'dashboard/dashapi/dashapi.go')
| -rw-r--r-- | dashboard/dashapi/dashapi.go | 5 |
1 files changed, 5 insertions, 0 deletions
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 { |
