From 81417f58bea80cdfb7d85a9e67f19b1e753c6af4 Mon Sep 17 00:00:00 2001 From: Dariusz Niemczyk Date: Sun, 14 Jan 2024 21:46:54 +0100 Subject: [PATCH] fix: trusted origins settings.py --- spejstore/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spejstore/settings.py b/spejstore/settings.py index 0ddbfa7..a1bd2a1 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