fixed router path

This commit is contained in:
Brad Rydzewski 2016-04-12 10:13:26 -07:00
parent df7068ef32
commit d635097105

View file

@ -142,10 +142,10 @@ func Load(middleware ...gin.HandlerFunc) http.Handler {
stream.GET("/:owner/:name/:build/:number", web.GetStream) stream.GET("/:owner/:name/:build/:number", web.GetStream)
} }
slash := e.Group("/slash/slack") bots := e.Group("/bots")
{ {
slash.Use(session.MustUser()) bots.Use(session.MustUser())
slash.POST("/slash", web.Slack) bots.POST("/slack", web.Slack)
} }
auth := e.Group("/authorize") auth := e.Group("/authorize")