diff options
Diffstat (limited to 'cmd/dashboard/main.go')
| -rw-r--r-- | cmd/dashboard/main.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/dashboard/main.go b/cmd/dashboard/main.go index eced067..72fe78e 100644 --- a/cmd/dashboard/main.go +++ b/cmd/dashboard/main.go @@ -308,6 +308,10 @@ func main() { r.Get("/api/boards", h.HandleGetBoards) r.Get("/api/shopping", h.HandleGetShoppingList) + // Docs -- read-only rendered view of docs/superpowers specs and plans + r.Get("/docs", h.HandleDocsIndex) + r.Get("/docs/{category}/{filename}", h.HandleDocsView) + // Tab routes for HTMX r.Get("/tabs/tasks", h.HandleTabTasks) r.Get("/tabs/planning", h.HandleTabPlanning) |
