Library panels: Add backend route (#55746)

pull/55517/head^2
Dominik Prokop 3 years ago committed by GitHub
parent e2ff875976
commit 70f48cc725
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      pkg/api/api.go

@ -155,6 +155,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)

Loading…
Cancel
Save