From 3f8708345159c44e3fcc371ee5eb42f41112ca23 Mon Sep 17 00:00:00 2001 From: Valentin CZERYBA Date: Wed, 29 May 2024 23:36:11 +0200 Subject: [PATCH] add backoffice --- app/main.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/main.py b/app/main.py index 1e98866..be6f657 100644 --- a/app/main.py +++ b/app/main.py @@ -11,8 +11,9 @@ app = FastAPI() origins = [ "http://localhost:8084", "https://backend.valczeryba.ovh", - "https://www.facebook.com", - "https://fetlife.com" + "https://facebook.com", + "https://fetlife.com", + "https://backoffice.valczeryba.ovh" ] app.add_middleware( @@ -43,4 +44,4 @@ async def startup_event(): @app.get("/") async def root(): - return {"message": "Hello World !"} \ No newline at end of file + return {"message": "Hello World !"}