summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
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 7cacd06..fd2c024 100644
--- a/cmd/dashboard/main.go
+++ b/cmd/dashboard/main.go
@@ -138,6 +138,10 @@ func main() {
r.Post("/unified-add", h.HandleUnifiedAdd)
r.Get("/partials/lists", h.HandleGetListsOptions)
+ // Task detail/edit
+ r.Get("/tasks/detail", h.HandleGetTaskDetail)
+ r.Post("/tasks/update", h.HandleUpdateTask)
+
// Bug reporting
r.Get("/bugs", h.HandleGetBugs)
r.Post("/bugs", h.HandleReportBug)