From d2356f044a887e41c08b7411ae6439c86abd9b1d Mon Sep 17 00:00:00 2001 From: SIMULATAN Date: Sun, 11 Aug 2024 06:18:14 +0000 Subject: [PATCH] fix: Support Slogan and Display Name Format (#726) Reviewed-on: https://code.forgejo.org/forgejo-helm/forgejo-helm/pulls/726 Reviewed-by: Michael Kriese Co-authored-by: SIMULATAN Co-committed-by: SIMULATAN --- templates/_helpers.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/_helpers.tpl b/templates/_helpers.tpl index c7d13d9..71edcb9 100644 --- a/templates/_helpers.tpl +++ b/templates/_helpers.tpl @@ -216,7 +216,7 @@ https {{- $_ := set $inlines $key (join "\n" $section) -}} {{- end -}} {{- else }} - {{- if or (eq $key "APP_NAME") (eq $key "RUN_USER") (eq $key "RUN_MODE") -}} + {{- if or (eq $key "APP_NAME") (eq $key "RUN_USER") (eq $key "RUN_MODE") (eq $key "APP_SLOGAN") (eq $key "APP_DISPLAY_NAME_FORMAT") -}} {{- $generals = append $generals (printf "%s=%s" $key $value) -}} {{- else -}} {{- (printf "Key %s cannot be on top level of configuration" $key) | fail -}}