From 610f45fc18c943db578e33d43a12f25f515957bf Mon Sep 17 00:00:00 2001 From: Florian Knappers <73856313+JJFlorian@users.noreply.github.com> Date: Fri, 5 Apr 2024 11:16:49 +0200 Subject: [PATCH] fixed https bug in csrf --- brostar_api/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brostar_api/settings.py b/brostar_api/settings.py index 14d2529..467936d 100644 --- a/brostar_api/settings.py +++ b/brostar_api/settings.py @@ -38,7 +38,7 @@ CSRF_TRUSTED_ORIGINS = [ "http://localhost:4200", - "staging.brostar.nl", + "https://staging.brostar.nl/", ]