diff options
author | Lanre Adelowo <adelowomailbox@gmail.com> | 2019-03-03 23:57:24 +0100 |
---|---|---|
committer | techknowlogick <matti@mdranta.net> | 2019-03-03 17:57:24 -0500 |
commit | 141c58f5a6353a3e9173ababd1532819ba2ee284 (patch) | |
tree | d888756084d086e455830f3d28526ced69de85d5 /vendor/code.gitea.io | |
parent | 8e202e28ad80452ced90ede3540e1662fa6d7da7 (diff) | |
download | gitea-141c58f5a6353a3e9173ababd1532819ba2ee284.tar.gz gitea-141c58f5a6353a3e9173ababd1532819ba2ee284.zip |
add isAdmin to user model (#6231)
update vendor and add tests
fix swagger
Diffstat (limited to 'vendor/code.gitea.io')
-rw-r--r-- | vendor/code.gitea.io/sdk/gitea/user.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/code.gitea.io/sdk/gitea/user.go b/vendor/code.gitea.io/sdk/gitea/user.go index 57cf752316..42d9b983e3 100644 --- a/vendor/code.gitea.io/sdk/gitea/user.go +++ b/vendor/code.gitea.io/sdk/gitea/user.go @@ -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 |