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 /routers/api/v1/user/user.go | |
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 'routers/api/v1/user/user.go')
-rw-r--r-- | routers/api/v1/user/user.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/api/v1/user/user.go b/routers/api/v1/user/user.go index 40d1b76805..cbc7bbc238 100644 --- a/routers/api/v1/user/user.go +++ b/routers/api/v1/user/user.go @@ -75,6 +75,7 @@ func Search(ctx *context.APIContext) { UserName: users[i].Name, AvatarURL: users[i].AvatarLink(), FullName: markup.Sanitize(users[i].FullName), + IsAdmin: users[i].IsAdmin, } if ctx.IsSigned && (!users[i].KeepEmailPrivate || ctx.User.IsAdmin) { results[i].Email = users[i].Email |