From 69ae1ea0e19d860d4dca32a2672b8a3f48872e9a Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Tue, 29 Apr 2025 11:59:52 -0700 Subject: [PATCH] appending api hosted urls to append to csp to allow for connections --- app/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/__init__.py b/app/__init__.py index f1ed64ab3..4d5113f46 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -183,6 +183,7 @@ def _csp(config): csp["connect-src"].append(ws_url) return csp + def create_app(application): @application.after_request def add_csp_header(response):