From 67ac858323599cd9c78bbc9daf430ca2e1cbcfd9 Mon Sep 17 00:00:00 2001 From: Dariusz Niemczyk Date: Sun, 14 Jan 2024 15:20:04 +0100 Subject: [PATCH] fix: missing comma because python --- spejstore/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spejstore/settings.py b/spejstore/settings.py index be9f145..015df08 100644 --- a/spejstore/settings.py +++ b/spejstore/settings.py @@ -38,7 +38,7 @@ ALLOWED_HOSTS = env( ).split(",") LOGIN_REDIRECT_URL = "/admin/" -CSRF_TRUSTED_ORIGINS = env("HOST", "https://inventory.hackerspace.pl").split(",") +CSRF_TRUSTED_ORIGINS = env("HOST", "https://inventory.hackerspace.pl,").split(",") # Application definition