From e033c1f167809d025521a34e0f97bbc207b880f8 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 23 Mar 2018 16:05:16 +0100 Subject: dashboard/app: use links instead of attachments in emails As per discussion at: https://groups.google.com/d/msg/syzkaller/zYlQ-b-QPHQ/AJzpeObcBAAJ --- dashboard/dashapi/dashapi.go | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'dashboard/dashapi/dashapi.go') 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 { -- cgit mrf-deployment