Browse Source

Merge pull request #2022 from dalmatinerdb/proxy-url-fix

fixing #2021
Torkel Ödegaard 10 years ago
parent
commit
51af06edf7
1 changed files with 1 additions and 0 deletions
  1. 1 0
      pkg/api/api.go

+ 1 - 0
pkg/api/api.go

@@ -118,6 +118,7 @@ func Register(r *macaron.Macaron) {
 
 		r.Get("/frontend/settings/", GetFrontendSettings)
 		r.Any("/datasources/proxy/:id/*", reqSignedIn, ProxyDataSourceRequest)
+		r.Any("/datasources/proxy/:id", reqSignedIn, ProxyDataSourceRequest)
 
 		// Dashboard
 		r.Group("/dashboards", func() {