aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/app/main.go')
-rw-r--r--dashboard/app/main.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/dashboard/app/main.go b/dashboard/app/main.go
index 95bd08919..a2025215e 100644
--- a/dashboard/app/main.go
+++ b/dashboard/app/main.go
@@ -967,6 +967,12 @@ func handleAdmin(c context.Context, w http.ResponseWriter, r *http.Request) erro
}
case "invalidate_bisection":
return handleInvalidateBisection(c, w, r)
+ case "updateBugReporting":
+ return updateBugReporting(c, w, r)
+ case "restartFailedBisections":
+ return restartFailedBisections(c, w, r)
+ case "setMissingBugFields":
+ return setMissingBugFields(c, w, r)
case "emergency_stop":
if err := recordEmergencyStop(c); err != nil {
return fmt.Errorf("failed to record an emergency stop: %w", err)