Merge branch 'fix-root-route-invocation' into 'master'

Allow calling root route on app

Closes #64

See merge request !91
This commit is contained in:
Travis Reeder
2017-07-11 09:44:29 -07:00
3 changed files with 10 additions and 1 deletions

View File

@@ -328,6 +328,7 @@ func (s *Server) bindHandlers(ctx context.Context) {
engine.DELETE("/tasks", s.handleTaskRequest)
engine.GET("/tasks", s.handleTaskRequest)
engine.Any("/r/:app", s.handleRunnerRequest)
engine.Any("/r/:app/*route", s.handleRunnerRequest)
// This final route is used for extensions, see Server.Add