summaryrefslogtreecommitdiffstats
path: root/modules/templates/helper.go
diff options
context:
space:
mode:
authorJonas <cez81@users.noreply.github.com>2017-02-28 01:40:02 +0100
committerLunny Xiao <xiaolunwen@gmail.com>2017-02-28 08:40:02 +0800
commita2019775903902622dc80c2231f105e3213f8a60 (patch)
tree58bcd998fe2d856ffd18690f8741d5dd03638c56 /modules/templates/helper.go
parent8947b711aa31452a97b22a93f28169fe3f990c2b (diff)
downloadgitea-a2019775903902622dc80c2231f105e3213f8a60.tar.gz
gitea-a2019775903902622dc80c2231f105e3213f8a60.zip
Fix for #828: Embed build tags (#1051)
* Fix for #828 Add build tags to ldflags and print in version output Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com> * Reworked formatBuiltWith function Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com> * Add tags to version information in admin panel Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com> * Added new variable for use on admin page. Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com> * Fixed incorrect indentation
Diffstat (limited to 'modules/templates/helper.go')
-rw-r--r--modules/templates/helper.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/templates/helper.go b/modules/templates/helper.go
index b03128a0b1..1f510bda6a 100644
--- a/modules/templates/helper.go
+++ b/modules/templates/helper.go
@@ -48,6 +48,9 @@ func NewFuncMap() []template.FuncMap {
"AppVer": func() string {
return setting.AppVer
},
+ "AppBuiltWith": func() string {
+ return setting.AppBuiltWith
+ },
"AppDomain": func() string {
return setting.Domain
},