aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/dashapi/dashapi.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-03-23 16:05:16 +0100
committerDmitry Vyukov <dvyukov@google.com>2018-03-25 12:46:05 +0200
commite033c1f167809d025521a34e0f97bbc207b880f8 (patch)
treeaaa07193859f4852c5b9e4d98a05b70617f94a54 /dashboard/dashapi/dashapi.go
parent87a91627182f083de13862f12b1c17a9ae96ace2 (diff)
dashboard/app: use links instead of attachments in emails
As per discussion at: https://groups.google.com/d/msg/syzkaller/zYlQ-b-QPHQ/AJzpeObcBAAJ
Diffstat (limited to 'dashboard/dashapi/dashapi.go')
-rw-r--r--dashboard/dashapi/dashapi.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go
index 1097e9065..48c54e3c9 100644
--- a/dashboard/dashapi/dashapi.go
+++ b/dashboard/dashapi/dashapi.go
@@ -226,17 +226,24 @@ type BugReport struct {
KernelCommitTitle string
KernelCommitDate time.Time
KernelConfig []byte
+ KernelConfigLink string
Log []byte
+ LogLink string
Report []byte
+ ReportLink string
ReproC []byte
+ ReproCLink string
ReproSyz []byte
+ ReproSyzLink string
CrashID int64 // returned back in BugUpdate
NumCrashes int64
HappenedOn []string // list of kernel repo aliases
CrashTitle string // job execution crash title
Error []byte // job execution error
+ ErrorLink string
Patch []byte // testing job patch
+ PatchLink string
}
type BugUpdate struct {