diff options
author | Norwin <noerw@users.noreply.github.com> | 2021-03-04 22:59:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-04 23:59:13 +0100 |
commit | 0a8a3ab0f5b46cc5280976c07a16d8721186f9f6 (patch) | |
tree | 92b97a65595dc2752c8a9908fb4aab0c176a3492 /routers/user/profile.go | |
parent | 11229ca53990fcb163b35295a2300daaf3ba7f47 (diff) | |
download | gitea-0a8a3ab0f5b46cc5280976c07a16d8721186f9f6.tar.gz gitea-0a8a3ab0f5b46cc5280976c07a16d8721186f9f6.zip |
Show private heatmap on profile to self & admins (#14881)
followup to #14080
Diffstat (limited to 'routers/user/profile.go')
-rw-r--r-- | routers/user/profile.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/routers/user/profile.go b/routers/user/profile.go index 5dfee07d76..ea4a1e8893 100644 --- a/routers/user/profile.go +++ b/routers/user/profile.go @@ -99,9 +99,7 @@ func Profile(ctx *context.Context) { ctx.Data["Owner"] = ctxUser ctx.Data["OpenIDs"] = openIDs - // no heatmap access for admins; GetUserHeatmapDataByUser ignores the calling user - // so everyone would get the same empty heatmap - if setting.Service.EnableUserHeatmap && !ctxUser.KeepActivityPrivate { + if setting.Service.EnableUserHeatmap { data, err := models.GetUserHeatmapDataByUser(ctxUser, ctx.User) if err != nil { ctx.ServerError("GetUserHeatmapDataByUser", err) |