From e136b7c2865c002cd86b8e3b76d24041de6b74ff Mon Sep 17 00:00:00 2001 From: Marcus Efraimsson Date: Thu, 14 Dec 2017 11:30:57 +0100 Subject: [PATCH] dashfolders: /dashboards should render index page with a 200 OK --- pkg/api/api.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/api/api.go b/pkg/api/api.go index 4b570ce5b89..3f6d8d4d954 100644 --- a/pkg/api/api.go +++ b/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)