1
0

Added method to delete a todo item from a list

This commit is contained in:
kolaente
2018-06-12 18:07:47 +02:00
parent 91f67dc364
commit 853fb2a2b7
4 changed files with 39 additions and 1 deletions

View File

@ -58,4 +58,6 @@ func RegisterRoutes(e *echo.Echo) {
a.GET("/lists/:id", apiv1.GetListByID)
a.POST("/lists/:id", apiv1.AddOrUpdateList)
a.PUT("/lists/:id", apiv1.AddOrUpdateListItem)
a.DELETE("/item/:id", apiv1.DeleteListItemByIDtemByID)
}