summaryrefslogtreecommitdiffstats
path: root/modules/templates/helper.go
diff options
context:
space:
mode:
authora1012112796 <1012112796@qq.com>2021-04-28 20:35:06 +0800
committerGitHub <noreply@github.com>2021-04-28 12:35:06 +0000
commit1e877613bf941ae9bed17e5b6c5b118bd3107777 (patch)
treee6b34d3244a869dbde02e5194deab29d3d511328 /modules/templates/helper.go
parentcc7d118b126cf451b1f3f9df72eb2f2e091d7ebc (diff)
downloadgitea-1e877613bf941ae9bed17e5b6c5b118bd3107777.tar.gz
gitea-1e877613bf941ae9bed17e5b6c5b118bd3107777.zip
add `/assets` as root dir of public files (#15219)
* add `/assets` as root dir of public files Signed-off-by: a1012112796 <1012112796@qq.com> * move serviceworker.js * make fmt * fix some link * fix test * Apply suggestions from code review Co-authored-by: silverwind <me@silverwind.io> * Apply suggestions from code review Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'modules/templates/helper.go')
-rw-r--r--modules/templates/helper.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/templates/helper.go b/modules/templates/helper.go
index 7b175bfab3..8f1362afc4 100644
--- a/modules/templates/helper.go
+++ b/modules/templates/helper.go
@@ -61,7 +61,7 @@ func NewFuncMap() []template.FuncMap {
return setting.AppSubURL
},
"StaticUrlPrefix": func() string {
- return setting.StaticURLPrefix
+ return setting.StaticURLPrefix + "/assets"
},
"AppUrl": func() string {
return setting.AppURL