Worked on user admin features, can now create and edit users as a grafana admin user, #1446

This commit is contained in:
Torkel Ödegaard
2015-02-10 15:36:51 +01:00
parent 088ad881e0
commit e165e2af95
11 changed files with 246 additions and 7 deletions

View File

@@ -63,6 +63,11 @@ type GetUserByLoginQuery struct {
Result *User
}
type GetUserByIdQuery struct {
Id int64
Result *User
}
type GetSignedInUserQuery struct {
UserId int64
Result *SignedInUser