Add endpoint to get a single task #106

Merged
konrad merged 9 commits from feature/get-single-task into master 2019-11-02 20:33:19 +00:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit 1060a296d8 - Show all commits

View File

@ -222,6 +222,7 @@ func registerAPIRoutes(a *echo.Group) {
}
a.PUT("/lists/:list", taskHandler.CreateWeb)
a.GET("/tasks/all", taskHandler.ReadAllWeb)
a.GET("/tasks/:listtask", taskHandler.ReadOneWeb)
a.DELETE("/tasks/:listtask", taskHandler.DeleteWeb)
a.POST("/tasks/:listtask", taskHandler.UpdateWeb)