From a14872b61f9475f6a9781d23443079137dc58e30 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 30 Mar 2025 01:16:00 -0600 Subject: [PATCH] fix: update ENABLE_USER_SIGN_UP value type in lowcoder template - Changed the ENABLE_USER_SIGN_UP configuration from a string to a boolean in template.toml for better type consistency. --- blueprints/lowcoder/template.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/lowcoder/template.toml b/blueprints/lowcoder/template.toml index ff6e3ee..18697f8 100644 --- a/blueprints/lowcoder/template.toml +++ b/blueprints/lowcoder/template.toml @@ -10,7 +10,7 @@ port = 3000 host = "${main_domain}" [config.env] -ENABLE_USER_SIGN_UP = "false" +ENABLE_USER_SIGN_UP = false ENCRYPTION_PASSWORD = "${encryption_password}" ENCRYPTION_SALT = "${encryption_salt}" CORS_ALLOWED_DOMAINS = "*"