Library panels: Add backend route (#55746)

This commit is contained in:
Dominik Prokop 2022-09-26 08:27:26 -07:00 committed by GitHub
parent e2ff875976
commit 70f48cc725
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)