Small update to update account command

This commit is contained in:
Torkel Ödegaard
2015-01-17 08:20:25 +01:00
parent 1532eb4278
commit c970e82758
5 changed files with 6 additions and 11 deletions

View File

@@ -42,7 +42,7 @@ type CreateAccountCommand struct {
}
type UpdateAccountCommand struct {
Email string `json:"email" binding:"required"`
Email string `json:"email" binding:"Required"`
Login string `json:"login"`
Name string `json:"name"`
@@ -100,6 +100,7 @@ type SignedInUser struct {
UserLogin string
UserName string
UserEmail string
ApiKeyId int64
IsGrafanaAdmin bool
}