summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-01-20 21:07:36 -1000
committerPeter Stone <thepeterstone@gmail.com>2026-01-20 21:07:36 -1000
commita38ce269cc9283556621b5447eb3a0caf697eae9 (patch)
tree28727aada058e8ec4c01d170f79bf7aaa2ab1201 /cmd
parent093ad56d8cb7274627a43004c95f4a5dd6b94fb7 (diff)
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 <noreply@anthropic.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/dashboard/main.go4
1 files changed, 4 insertions, 0 deletions
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