From 25cb44b40eb59f5477a6191edcb49158e75e7f9c Mon Sep 17 00:00:00 2001 From: tonyrewin Date: Wed, 5 Oct 2022 20:18:15 +0300 Subject: [PATCH] fixlink --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 1a99600d..baa79775 100644 --- a/main.py +++ b/main.py @@ -55,7 +55,7 @@ async def shutdown(): routes = [ Route("/oauth/{provider}", endpoint=oauth_login), Route("/oauth-authorize", endpoint=oauth_authorize), - Route("/confirm-email/{token}", endpoint=confirm_email_handler), # should be called on client + Route("/confirm/{token}", endpoint=confirm_email_handler), # should be called on client ] app = Starlette(