From dfbcd988bf48a16945a9181a013e0182897d65a3 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 14 Oct 2024 17:14:12 +0200 Subject: dashboard/api: add "Link" to link fields --- dashboard/api/api.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dashboard/api/api.go') diff --git a/dashboard/api/api.go b/dashboard/api/api.go index 36c61b040..ec5e5a508 100644 --- a/dashboard/api/api.go +++ b/dashboard/api/api.go @@ -30,16 +30,16 @@ type Bug struct { type Crash struct { Title string `json:"title"` - SyzReproducer string `json:"syz-reproducer,omitempty"` - CReproducer string `json:"c-reproducer,omitempty"` - KernelConfig string `json:"kernel-config,omitempty"` + SyzReproducerLink string `json:"syz-reproducer,omitempty"` + CReproducerLink string `json:"c-reproducer,omitempty"` + KernelConfigLink string `json:"kernel-config,omitempty"` KernelSourceGit string `json:"kernel-source-git,omitempty"` KernelSourceCommit string `json:"kernel-source-commit,omitempty"` SyzkallerGit string `json:"syzkaller-git,omitempty"` SyzkallerCommit string `json:"syzkaller-commit,omitempty"` CompilerDescription string `json:"compiler-description,omitempty"` Architecture string `json:"architecture,omitempty"` - CrashReport string `json:"crash-report-link,omitempty"` + CrashReportLink string `json:"crash-report-link,omitempty"` } type Commit struct { -- cgit mrf-deployment