1
0

Implemented team update method

This commit is contained in:
konrad
2018-07-14 18:29:24 +02:00
committed by kolaente
parent bcbd415529
commit 4cf0cd233c
9 changed files with 96 additions and 10 deletions

View File

@ -120,5 +120,5 @@ func RegisterRoutes(e *echo.Echo) {
a.GET("/teams/:id", teamHandler.ReadOneWeb)
a.PUT("/teams", teamHandler.CreateWeb)
a.POST("/teams/:id", teamHandler.UpdateWeb)
a.POST("/teams/:id", teamHandler.DeleteWeb)
a.DELETE("/teams/:id", teamHandler.DeleteWeb)
}