From 4f5ad2aa53df28fe52510da499d8149dfe611baf Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 25 Jul 2017 20:25:05 +0200 Subject: dashboard/dashapi: add link to BugUpdate and BugUpdateReply type --- dashboard/dashapi/dashapi.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'dashboard/dashapi/dashapi.go') diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index a5d5e267f..79b0368b1 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -100,20 +100,26 @@ type BugReport struct { KernelRepo string KernelBranch string KernelCommit string + KernelConfig []byte Log []byte Report []byte - KernelConfig []byte ReproC []byte ReproSyz []byte } type BugUpdate struct { ID string + Link string Status BugStatus ReproLevel ReproLevel DupOf string } +type BugUpdateReply struct { + OK bool + Text string +} + type PollRequest struct { Type string } -- cgit mrf-deployment