From 669899a373e62051646f25c88d1d75549da9b46f Mon Sep 17 00:00:00 2001 From: ddcash Date: Sun, 21 Jul 2024 12:46:51 -0500 Subject: [PATCH] Update config.json I missed modifying the schema and in addition changes the enable/disable options to use "bool" instead of "str" to align better with the options --- linkwarden/config.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/linkwarden/config.json b/linkwarden/config.json index 433196fbd..68e78011d 100644 --- a/linkwarden/config.json +++ b/linkwarden/config.json @@ -11,7 +11,7 @@ "NEXTAUTH_URL": "http://localhost:3000/api/v1/auth", "NEXT_PUBLIC_AUTHENTIK_ENABLED": "false", "NEXT_PUBLIC_CREDENTIALS_ENABLED": "true", - "NEXT_PUBLIC_DISABLE_REGISTRATION": "False", + "NEXT_PUBLIC_DISABLE_REGISTRATION": "false", "AUTHENTIK_CUSTOM_NAME": "Authentik", "AUTHENTIK_ISSUER": "https://authentik.my-doma.in/application/o/linkwarden", "AUTHENTIK_CLIENT_ID": "CLIENT_ID", @@ -31,10 +31,12 @@ }, "schema": { "DATABASE_URL": "str?", + "STORAGE_FOLDER": "str?", "NEXTAUTH_SECRET": "str", "NEXTAUTH_URL": "str?", - "NEXT_PUBLIC_AUTHENTIK_ENABLED": "str?", - "STORAGE_FOLDER": "str?", + "NEXT_PUBLIC_AUTHENTIK_ENABLED": "bool?", + "NEXT_PUBLIC_CREDENTIALS_ENABLED": "bool?", + "NEXT_PUBLIC_DISABLE_REGISTRATION": "bool?", "AUTHENTIK_CUSTOM_NAME": "str?", "AUTHENTIK_ISSUER": "str?", "AUTHENTIK_CLIENT_ID": "str?",