1
0

feat(views): return tasks in a view

This commit is contained in:
kolaente
2024-03-14 09:47:42 +01:00
parent e4b1a5d2db
commit 2096fc5274
2 changed files with 14 additions and 2 deletions

View File

@ -355,6 +355,7 @@ func registerAPIRoutes(a *echo.Group) {
return &models.TaskCollection{}
},
}
a.GET("/projects/:project/views/:view/tasks", taskCollectionHandler.ReadAllWeb)
a.GET("/projects/:project/tasks", taskCollectionHandler.ReadAllWeb)
kanbanBucketHandler := &handler.WebHandler{