From 22bbba9c69589a92749839b00a55f1466b133678 Mon Sep 17 00:00:00 2001 From: Elijah Date: Sun, 14 Jan 2024 19:59:09 +0100 Subject: [PATCH] Test to see whether python-decouple is responsible for the errors --- trustchain_idhub/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trustchain_idhub/settings.py b/trustchain_idhub/settings.py index dc64844..15c1e82 100644 --- a/trustchain_idhub/settings.py +++ b/trustchain_idhub/settings.py @@ -34,7 +34,7 @@ DEBUG = config('DEBUG', default=False, cast=bool) DEVELOPMENT = config('DEVELOPMENT', default=False, cast=bool) ALLOWED_HOSTS = config('ALLOWED_HOSTS', default=[]) -CSRF_TRUSTED_ORIGINS = config('CSRF_TRUSTED_ORIGINS', default=[], cast=Csv()) +CSRF_TRUSTED_ORIGINS = config('CSRF_TRUSTED_ORIGINS', default=[]) DOMAIN = config("DOMAIN", "http://localhost")