From ede84f1758cf2998e13d2e4a361e3159fbd7a85b Mon Sep 17 00:00:00 2001 From: Felix Zumstein Date: Fri, 13 Sep 2024 21:51:25 +0200 Subject: [PATCH] fix cors for office scripts --- app/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/main.py b/app/main.py index 144afcf..2be2863 100644 --- a/app/main.py +++ b/app/main.py @@ -33,6 +33,8 @@ app=app, allow_origins=settings.cors_allow_origins, allow_methods=["POST"], + allow_headers=["*"], + allow_credentials=False, ) main_app = cors_app