From e6fa32b6e7b8d75567ed8c0b75058dc5b0a0fd5d Mon Sep 17 00:00:00 2001 From: zeripath Date: Tue, 26 May 2020 23:39:39 +0100 Subject: [PATCH] When must change password only show Signout (#11600) When "Must Change Password" simplify the navbar header to only show the signout button as all other links will redirect back. This prevents the notifications icon from showing preventing initialization of the event-source and hence preventing redirect_to being set, however in addition do not set the redirect_to cookie if we are looking at the /user/events page. Fix #11554 Signed-off-by: Andrew Thornton --- modules/context/auth.go | 4 +++- routers/user/auth.go | 1 + templates/base/head_navbar.tmpl | 32 +++++++++++++++++++++++++++----- 3 files changed, 31 insertions(+), 6 deletions(-) diff --git a/modules/context/auth.go b/modules/context/auth.go index 7410db75a5f46..86922aae599ad 100644 --- a/modules/context/auth.go +++ b/modules/context/auth.go @@ -49,7 +49,9 @@ func Toggle(options *ToggleOptions) macaron.Handler { if ctx.Req.URL.Path != "/user/settings/change_password" { ctx.Data["Title"] = ctx.Tr("auth.must_change_password") ctx.Data["ChangePasscodeLink"] = setting.AppSubURL + "/user/change_password" - ctx.SetCookie("redirect_to", setting.AppSubURL+ctx.Req.URL.RequestURI(), 0, setting.AppSubURL) + if ctx.Req.URL.Path != "/user/events" { + ctx.SetCookie("redirect_to", setting.AppSubURL+ctx.Req.URL.RequestURI(), 0, setting.AppSubURL) + } ctx.Redirect(setting.AppSubURL + "/user/settings/change_password") return } diff --git a/routers/user/auth.go b/routers/user/auth.go index e1a8854804dbf..a253e6cdbb2c3 100644 --- a/routers/user/auth.go +++ b/routers/user/auth.go @@ -1489,6 +1489,7 @@ func ResetPasswdPost(ctx *context.Context) { func MustChangePassword(ctx *context.Context) { ctx.Data["Title"] = ctx.Tr("auth.must_change_password") ctx.Data["ChangePasscodeLink"] = setting.AppSubURL + "/user/settings/change_password" + ctx.Data["MustChangePassword"] = true ctx.HTML(200, tplMustChangePassword) } diff --git a/templates/base/head_navbar.tmpl b/templates/base/head_navbar.tmpl index cedf29e2e9c66..393671d3ad491 100644 --- a/templates/base/head_navbar.tmpl +++ b/templates/base/head_navbar.tmpl @@ -8,7 +8,9 @@ - {{if .IsSigned}} + {{if and .IsSigned .MustChangePassword}} + {{/* No links */}} + {{else if .IsSigned}} {{.i18n.Tr "dashboard"}} {{if not .UnitIssuesGlobalDisabled}} {{.i18n.Tr "issues"}} @@ -40,7 +42,30 @@ */}} - {{if .IsSigned}} + + {{if and .IsSigned .MustChangePassword}} + + {{else if .IsSigned}} - {{else}} - {{.i18n.Tr "help"}} - {{end}}