aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/dashapi/dashapi.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-11-22 10:14:48 +0100
committerDmitry Vyukov <dvyukov@google.com>2017-11-22 12:49:11 +0100
commit8c7cd9275d42c9dd3cf5d93c1a9fb01b99f88db8 (patch)
treed1499fe65138852e8d7b6f9306bf2a3acf3b4979 /dashboard/dashapi/dashapi.go
parentee01a72bf45603694caa6c9471bdccb6698180d4 (diff)
dashboard/app: support corrupted reports
Diffstat (limited to 'dashboard/dashapi/dashapi.go')
-rw-r--r--dashboard/dashapi/dashapi.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go
index 10c6a9b60..50c144dae 100644
--- a/dashboard/dashapi/dashapi.go
+++ b/dashboard/dashapi/dashapi.go
@@ -147,8 +147,9 @@ func (dash *Dashboard) ReportCrash(crash *Crash) (*ReportCrashResp, error) {
// CrashID is a short summary of a crash for repro queires.
type CrashID struct {
- BuildID string
- Title string
+ BuildID string
+ Title string
+ Corrupted bool
}
type NeedReproResp struct {