Show country if we have confidential privileges and we're looking at our user

This commit is contained in:
Howl 2016-04-03 21:49:51 +02:00
parent df793351c0
commit 6b70214810
1 changed files with 3 additions and 1 deletions

View File

@ -72,7 +72,9 @@ func UserGET(md common.MethodData) (r common.Response) {
}
}
if !showcountry {
// If the user wants to stay anonymous, don't show their country.
// This can be overriden if we have the ReadConfidential privilege and the user we are accessing is the token owner.
if !(showcountry || (md.User.Privileges.HasPrivilegeReadConfidential() && user.ID == md.User.UserID)) {
user.Country = "XX"
}