From 664df61549a8bb530643d3095732e583a3661076 Mon Sep 17 00:00:00 2001 From: thclaude <23203061+thclaude@users.noreply.github.com> Date: Fri, 5 Jan 2024 11:34:55 +0100 Subject: [PATCH] Update boolean env fields Set required to false since it's quite useless on a boolean field(?) and update the description to reflect this change --- apps/rallly/config.json | 4 ++-- apps/rallly/metadata/description.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/rallly/config.json b/apps/rallly/config.json index 164b2b88..238a1fe9 100644 --- a/apps/rallly/config.json +++ b/apps/rallly/config.json @@ -72,13 +72,13 @@ { "type": "boolean", "label": "SMTP Secure", - "required": true, + "required": false, "env_variable": "RALLLY_SMTP_SECURE" }, { "type": "boolean", "label": "SMTP Enable TLS", - "required": true, + "required": false, "env_variable": "RALLLY_SMTP_TLS_ENABLED" }, { diff --git a/apps/rallly/metadata/description.md b/apps/rallly/metadata/description.md index 4a202b2c..3d6427c1 100644 --- a/apps/rallly/metadata/description.md +++ b/apps/rallly/metadata/description.md @@ -21,8 +21,8 @@ Built with [Next.js](https://github.com/vercel/next.js/), [Prisma](https://githu | Allowed Emails | RALLLY_ALLOWED_EMAILS | text | Comma separated list of email addresses that are allowed to register and login. You can use wildcard syntax to match a range of email addresses. | NO | | SMTP Host | RALLLY_SMTP_HOST | text | The host address of your SMTP server | YES | | SMTP Port | RALLLY_SMTP_PORT | number | The port of your SMTP server | YES | -| SMTP Secure | RALLLY_SMTP_SECURE | boolean | Set to "true" if SSL is enabled for your SMTP connection | - | -| SMTP Enable TLS | RALLLY_SMTP_TLS_ENABLED | boolean | Enable TLS for your SMTP connection | - | +| SMTP Secure | RALLLY_SMTP_SECURE | boolean | Set to "true" if SSL is enabled for your SMTP connection | NO | +| SMTP Enable TLS | RALLLY_SMTP_TLS_ENABLED | boolean | Enable TLS for your SMTP connection | NO | | SMTP User | RALLLY_SMTP_USER | text | The username (if auth is enabled on your SMTP server) | NO | | SMTP Password | RALLLY_SMTP_PWD | password | The password (if auth is enabled on your SMTP server) | NO |