mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 23:12:54 +08:00
Fixed links to user admin views, and backend html routes for user admin edit/create urls, Closes #1451
This commit is contained in:
@ -31,6 +31,8 @@ func Register(r *macaron.Macaron) {
|
||||
r.Get("/account/apikeys/", reqSignedIn, Index)
|
||||
r.Get("/account/import/", reqSignedIn, Index)
|
||||
r.Get("/admin/users", reqGrafanaAdmin, Index)
|
||||
r.Get("/admin/users/create", reqGrafanaAdmin, Index)
|
||||
r.Get("/admin/users/edit/:id", reqGrafanaAdmin, Index)
|
||||
r.Get("/dashboard/*", reqSignedIn, Index)
|
||||
|
||||
// sign up
|
||||
|
Reference in New Issue
Block a user