Browse Source

dashfolders: /dashboards should render index page with a 200 OK

Marcus Efraimsson 8 years ago
parent
commit
e136b7c286
1 changed files with 1 additions and 0 deletions
  1. 1 0
      pkg/api/api.go

+ 1 - 0
pkg/api/api.go

@@ -64,6 +64,7 @@ func (hs *HttpServer) registerRoutes() {
 	r.Get("/dashboard-solo/snapshot/*", Index)
 	r.Get("/dashboard-solo/*", reqSignedIn, Index)
 	r.Get("/import/dashboard", reqSignedIn, Index)
+	r.Get("/dashboards/", reqSignedIn, Index)
 	r.Get("/dashboards/*", reqSignedIn, Index)
 
 	r.Get("/playlists/", reqSignedIn, Index)