From faf5a74441e3b4654391c8396eb19adb05c40525 Mon Sep 17 00:00:00 2001 From: alima Date: Mon, 30 Jun 2025 03:48:52 +0330 Subject: [PATCH] fix: update the csrf trusted origins --- brightIDfaucet/settings.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/brightIDfaucet/settings.py b/brightIDfaucet/settings.py index 257d559..9c77065 100644 --- a/brightIDfaucet/settings.py +++ b/brightIDfaucet/settings.py @@ -305,3 +305,13 @@ def before_send(event, hint): ), } CELERY_BROKER_URL = REDIS_URL + +CSRF_TRUSTED_ORIGINS = [ + "https://unitap-front.vercel.app", + "https://unitap.app", + "https://www.unitap.app", + "https://dashboard.unitap.app", + "https://bright.cafepay.app", + "https://api.unitap.app", + "https://stage.unitap.app", +]