fix controllers used in OS routes

This commit is contained in:
Chris Cromer 2023-01-28 20:54:12 -03:00
parent ca66e18811
commit 49dbe22df7
Signed by: cromer
GPG Key ID: FA91071797BEEEC2
1 changed files with 5 additions and 5 deletions

View File

@ -8,9 +8,9 @@ import (
)
func OSRoutes(router *httprouter.Router) {
router.GET("/os", controllers.ListUsers)
router.GET("/os/:id", controllers.GetUser)
router.POST("/os", middlewares.Authenticate(controllers.CreateUser))
router.PATCH("/os/:id", middlewares.Authenticate(controllers.UpdateUser))
router.DELETE("/os/:id", middlewares.Authenticate(controllers.DeleteUser))
router.GET("/os", controllers.ListOS)
router.GET("/os/:id", controllers.GetOS)
router.POST("/os", middlewares.Authenticate(controllers.CreateOS))
router.PATCH("/os/:id", middlewares.Authenticate(controllers.UpdateOS))
router.DELETE("/os/:id", middlewares.Authenticate(controllers.DeleteOS))
}