mirror of
https://github.com/grafana/grafana.git
synced 2025-01-09 23:53:25 -06:00
API: Fix 404 status code plugin pages (#36402)
This commit is contained in:
parent
808b9a3126
commit
1ab452e88a
@ -80,6 +80,7 @@ func (hs *HTTPServer) registerRoutes() {
|
||||
r.Get("/plugins/:id/edit", reqSignedIn, hs.Index) // deprecated
|
||||
r.Get("/plugins/:id/page/:page", reqSignedIn, hs.Index)
|
||||
r.Get("/a/:id/*", reqSignedIn, hs.Index) // App Root Page
|
||||
r.Get("/a/:id", reqSignedIn, hs.Index)
|
||||
|
||||
r.Get("/d/:uid/:slug", reqSignedIn, redirectFromLegacyPanelEditURL, hs.Index)
|
||||
r.Get("/d/:uid", reqSignedIn, redirectFromLegacyPanelEditURL, hs.Index)
|
||||
|
Loading…
Reference in New Issue
Block a user