add IsAdmin to user (#151)
This commit is contained in:
parent
9c4f648599
commit
e4effe4df2
1 changed files with 2 additions and 0 deletions
|
@ -24,6 +24,8 @@ type User struct {
|
|||
AvatarURL string `json:"avatar_url"`
|
||||
// User locale
|
||||
Language string `json:"language"`
|
||||
// Is the user an administrator
|
||||
IsAdmin bool `json:"is_admin"`
|
||||
}
|
||||
|
||||
// MarshalJSON implements the json.Marshaler interface for User, adding field(s) for backward compatibility
|
||||
|
|
Loading…
Reference in a new issue