Add CurrentURL template variable back (#37444)

Because some custom template users need it, also add a new test and
comments
This commit is contained in:
wxiaoguang
2026-04-27 14:19:46 +08:00
committed by GitHub
parent 45b4fffae4
commit b45be5b20d
2 changed files with 17 additions and 0 deletions

View File

@@ -163,6 +163,7 @@ func Contexter() func(next http.Handler) http.Handler {
base := NewBaseContext(resp, req)
ctx := NewWebContext(base, rnd, session.GetContextSession(req))
ctx.Data.MergeFrom(middleware.CommonTemplateContextData())
ctx.Data["CurrentURL"] = setting.AppSubURL + req.URL.RequestURI()
ctx.Data["Link"] = ctx.Link
// PageData is passed by reference, and it will be rendered to `window.config.pageData` in `head.tmpl` for JavaScript modules