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
This commit is contained in:
thclaude 2024-01-05 11:34:55 +01:00 committed by Thibault Claude
parent 1b16ed898d
commit 664df61549
2 changed files with 4 additions and 4 deletions

View File

@ -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"
},
{

View File

@ -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 |