mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
Respect email privacy option in user search via API (#4512)
* respect user's email privacy option * make email visible to admin irrespective of privacy option
This commit is contained in:
parent
d0fef4395f
commit
4bf0cae1f5
@ -60,7 +60,7 @@ func Search(ctx *context.APIContext) {
|
|||||||
AvatarURL: users[i].AvatarLink(),
|
AvatarURL: users[i].AvatarLink(),
|
||||||
FullName: markup.Sanitize(users[i].FullName),
|
FullName: markup.Sanitize(users[i].FullName),
|
||||||
}
|
}
|
||||||
if ctx.IsSigned {
|
if ctx.IsSigned && (!users[i].KeepEmailPrivate || ctx.User.IsAdmin) {
|
||||||
results[i].Email = users[i].Email
|
results[i].Email = users[i].Email
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user