From 51144a427fb3e589cedb28350a2507efa8f2c63c Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Mon, 26 Sep 2022 11:42:19 -0400 Subject: [PATCH] Library panels: Add backend route (#55746) (#55758) (cherry picked from commit 70f48cc725cae69db49b9c21bf9c274a9a019fcd) Co-authored-by: Dominik Prokop --- pkg/api/api.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/api/api.go b/pkg/api/api.go index 6d0e57508be..f21653ab6a0 100644 --- a/pkg/api/api.go +++ b/pkg/api/api.go @@ -153,6 +153,7 @@ func (hs *HTTPServer) registerRoutes() { r.Get("/playlists/*", reqSignedIn, hs.Index) r.Get("/alerting/", reqSignedIn, hs.Index) r.Get("/alerting/*", reqSignedIn, hs.Index) + r.Get("/library-panels/", reqSignedIn, hs.Index) // sign up r.Get("/verify", hs.Index)