From a27e0f2ca90eb58ebd269f063d3127126a7e85a4 Mon Sep 17 00:00:00 2001 From: Sturdy <91910406+apollo-sturdy@users.noreply.github.com> Date: Wed, 31 Jan 2024 15:08:51 +0100 Subject: [PATCH] feat: make calcom encryption key random generated --- apps/calcom/config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/calcom/config.json b/apps/calcom/config.json index 0b2f9a83..42826579 100644 --- a/apps/calcom/config.json +++ b/apps/calcom/config.json @@ -23,10 +23,10 @@ "env_variable": "CALCOM_NEXTAUTH_SECRET" }, { - "type": "password", + "type": "random", "label": "Calendso Encryption Key. Encryption key that will be used to encrypt CalDAV credentials, choose a random string, for example with `dd if=/dev/urandom bs=1K count=1 | md5sum`", "required": true, - "min": 1, + "min": 32, "max": 1024, "env_variable": "CALENDSO_ENCRYPTION_KEY" },