summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorLanre Adelowo <adelowomailbox@gmail.com>2019-02-19 15:11:50 +0100
committertechknowlogick <matti@mdranta.net>2019-02-19 09:11:50 -0500
commit094263db4d9f1b53c4b4c021005eec07baddd253 (patch)
tree69d47554792a96e3dd13fdfd8c28cfb30ac462f8 /routers
parentff2be17e3f2e4cf8e756796574cdd72d349fa19b (diff)
downloadgitea-094263db4d9f1b53c4b4c021005eec07baddd253.tar.gz
gitea-094263db4d9f1b53c4b4c021005eec07baddd253.zip
Show email if the authenticated user owns the profile page being requested for (#4981)
* Show email if the authenticated user owns the profile page being requested for. Also removed `setting.UI.ShowUserEmail` as it's documentation says it only controls the email setting on the explore page * fix current user check... This prevents a panic as a user must be signed in before ctx.User is called * fix panic in tests * try to fix tests * Update year * Test CI fail * Revert change * User 3 is not allowed to authorize * Set user2 email to be private * Change to user4 in explore page as user2 now has private email option set
Diffstat (limited to 'routers')
-rw-r--r--routers/user/profile.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/user/profile.go b/routers/user/profile.go
index b1daa9e496..03f88e256a 100644
--- a/routers/user/profile.go
+++ b/routers/user/profile.go
@@ -237,7 +237,7 @@ func Profile(ctx *context.Context) {
}
}
- ctx.Data["ShowUserEmail"] = setting.UI.ShowUserEmail
+ ctx.Data["ShowUserEmail"] = len(ctxUser.Email) > 0 && ctx.IsSigned && (!ctxUser.KeepEmailPrivate || ctxUser.ID == ctx.User.ID)
ctx.HTML(200, tplProfile)
}