Accounts admin view/get api

This commit is contained in:
Torkel Ödegaard
2015-01-15 15:54:22 +01:00
parent fdfcc3ab2a
commit 804bff55ec
4 changed files with 8 additions and 6 deletions
+5 -3
View File
@@ -95,9 +95,11 @@ type CollaboratorDTO struct {
}
type AccountSearchHitDTO struct {
Id int64 `json:"id"`
Name string `json:"name"`
Email string `json:"email"`
Id int64 `json:"id"`
Name string `json:"name"`
Login string `json:"login"`
Email string `json:"email"`
IsAdmin bool `json:"isAdmin"`
}
type AccountDTO struct {