From a38ce269cc9283556621b5447eb3a0caf697eae9 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Tue, 20 Jan 2026 21:07:36 -1000 Subject: Add in-app bug reporting feature - New bugs table in SQLite (migration 005) - Store methods for saving and retrieving bugs - Handlers for GET/POST /bugs - Floating bug button with modal UI - Shows recent bug reports in modal Co-Authored-By: Claude Opus 4.5 --- cmd/dashboard/main.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cmd') diff --git a/cmd/dashboard/main.go b/cmd/dashboard/main.go index de3fb7c..7cacd06 100644 --- a/cmd/dashboard/main.go +++ b/cmd/dashboard/main.go @@ -137,6 +137,10 @@ func main() { // Unified Quick Add (for Tasks tab) r.Post("/unified-add", h.HandleUnifiedAdd) r.Get("/partials/lists", h.HandleGetListsOptions) + + // Bug reporting + r.Get("/bugs", h.HandleGetBugs) + r.Post("/bugs", h.HandleReportBug) }) // Start server -- cgit v1.2.3