From 76ac0a34539dcef7c49984a2e28d392e0c15f8ce Mon Sep 17 00:00:00 2001 From: Stefan Ubbink Date: Wed, 8 Feb 2023 20:26:21 +0100 Subject: [PATCH] Fix DISABLE_WEBHOOKS value in the template --- templates/gitea.ini.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/gitea.ini.j2 b/templates/gitea.ini.j2 index 6d0d033..eed51a1 100644 --- a/templates/gitea.ini.j2 +++ b/templates/gitea.ini.j2 @@ -154,7 +154,7 @@ DATADIR = {{ gitea_home }}/indexers/issues.queue INSTALL_LOCK = true SECRET_KEY = {{ gitea_secret_key }} DISABLE_GIT_HOOKS = {{ gitea_disable_git_hooks | ternary('true', 'false') }} -DISABLE_WEBHOOKS = { gitea_disable_webhooks | ternary('true', 'false') } +DISABLE_WEBHOOKS = {{ gitea_disable_webhooks | ternary('true', 'false') }} INTERNAL_TOKEN = {{ gitea_internal_token }} PASSWORD_CHECK_PWN = {{ gitea_password_check_pwn | ternary('true', 'false') }} {{ gitea_security_extra_config }}