mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 23:12:28 +08:00
Worked on account update, moved collaborats to its own api url and files
This commit is contained in:
@ -34,7 +34,9 @@ func Register(m *macaron.Macaron) {
|
||||
// account
|
||||
m.Group("/account", func() {
|
||||
m.Get("/", GetAccount)
|
||||
m.Post("/", UpdateAccount)
|
||||
m.Put("/collaborators", AddCollaborator)
|
||||
m.Get("/collaborators", GetCollaborators)
|
||||
m.Delete("/collaborators/:id", RemoveCollaborator)
|
||||
m.Post("/using/:id", SetUsingAccount)
|
||||
m.Get("/others", GetOtherAccounts)
|
||||
|
Reference in New Issue
Block a user