瀏覽代碼

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

Marcus Efraimsson 8 年之前
父節點
當前提交
e136b7c286
共有 1 個文件被更改,包括 1 次插入0 次删除
  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)