From dacb710fc4ea63baa05cc47016def3849b9db5fa Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Mon, 29 Jun 2026 07:09:43 +0000 Subject: feat: add standalone task detail page for Android widget deep-links Adds GET /task?id=xxx&source=xxx route that renders a full mobile-friendly task detail page (session-protected). Widget task rows now open this page when tapped. HandleUpdateTask redirects back to the page after a non-HTMX save. Android: threads serverUrl through composable chain to TaskRow. Co-Authored-By: Claude Sonnet 4.6 --- cmd/dashboard/main.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd') diff --git a/cmd/dashboard/main.go b/cmd/dashboard/main.go index 133b684..92a149b 100644 --- a/cmd/dashboard/main.go +++ b/cmd/dashboard/main.go @@ -324,6 +324,7 @@ func main() { // Task detail/edit r.Get("/tasks/detail", h.HandleGetTaskDetail) + r.Get("/task", h.HandleTaskDetailPage) r.Post("/tasks/update", h.HandleUpdateTask) // Shopping quick-add -- cgit v1.2.3