From e3f70909352f9aba0f2cb8ccd4798ba739787bdc Mon Sep 17 00:00:00 2001 From: Fanilo-Nantenaina Date: Tue, 6 Jan 2026 00:11:47 +0300 Subject: [PATCH] fix(routes): add duplicate webhook endpoint with trailing slash --- routes/universign.py | 1 + 1 file changed, 1 insertion(+) diff --git a/routes/universign.py b/routes/universign.py index ae901f7..73761d3 100644 --- a/routes/universign.py +++ b/routes/universign.py @@ -413,6 +413,7 @@ async def sync_all_transactions( @router.post("/webhook") +@router.post("/webhook/") async def webhook_universign( request: Request, session: AsyncSession = Depends(get_session) ):