diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-07-25 20:25:05 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-07-25 20:25:05 +0200 |
| commit | 4f5ad2aa53df28fe52510da499d8149dfe611baf (patch) | |
| tree | 4d7801a028935f5d854f15c28604576a238ea5a8 /dashboard | |
| parent | df92da0d0e5b0d44eda9ae096b9ccffd4158f0ae (diff) | |
dashboard/dashapi: add link to BugUpdate and BugUpdateReply type
Diffstat (limited to 'dashboard')
| -rw-r--r-- | dashboard/dashapi/dashapi.go | 8 |
1 files changed, 7 insertions, 1 deletions
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 } |
