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 9e305d7 commit dd9f341Copy full SHA for dd9f341
api/profile.go
@@ -25,7 +25,7 @@ type AnalysisProfileHandler struct {
25
26
func (h AnalysisProfileHandler) AddRoutes(e *gin.Engine) {
27
routeGroup := e.Group("/")
28
- routeGroup.Use(Required("Profiles"))
+ routeGroup.Use(Required("Profiles"), Transaction)
29
routeGroup.GET(AnalysisProfileRoot, h.Get)
30
routeGroup.GET(AnalysisProfilesRoot, h.List)
31
routeGroup.GET(AnalysisProfilesRoot+"/", h.List)
0 commit comments