From 3675853bfc5c9006b1f43f16319517405482babc Mon Sep 17 00:00:00 2001 From: Melissa Autumn Date: Mon, 8 Jan 2024 11:17:19 -0800 Subject: [PATCH] Update fxa webhook route to POST from GET. --- backend/src/appointment/routes/webhooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/appointment/routes/webhooks.py b/backend/src/appointment/routes/webhooks.py index f778620ba..603cd242c 100644 --- a/backend/src/appointment/routes/webhooks.py +++ b/backend/src/appointment/routes/webhooks.py @@ -11,7 +11,7 @@ router = APIRouter() -@router.get("/fxa-process") +@router.post("/fxa-process") def fxa_process( request: Request, db: Session = Depends(get_db),