We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 294993a commit 414de02Copy full SHA for 414de02
cmd/api/main.go
@@ -22,6 +22,8 @@ func main() {
22
LogURI: true,
23
LogStatus: true,
24
LogError: true,
25
+ LogLatency: true,
26
+ LogMethod: true,
27
LogValuesFunc: logger.RouteLogger,
28
}))
29
pkg/router/idea_routes.go
@@ -12,7 +12,7 @@ func IdeaRoutes(incomingRoutes *echo.Group) {
12
idea.Use(middleware.CheckTeamBan)
13
idea.Use(middleware.CheckUserVerifiation)
14
15
- idea.POST("/create", controller.CreateIdea)
16
- idea.PUT("/update", controller.UpdateIdea)
+ // idea.POST("/create", controller.CreateIdea)
+ // idea.PUT("/update", controller.UpdateIdea)
17
idea.GET("/", controller.GetIdea)
18
}
0 commit comments