This commit is contained in:
tonyrewin 2022-12-12 13:05:38 +03:00
parent 2a9703bb9d
commit 642207116f

View File

@ -65,10 +65,10 @@ async def shutdown():
routes = [ routes = [
Route("/messages", endpoint=sse_messages),
Route("/oauth/{provider}", endpoint=oauth_login), Route("/oauth/{provider}", endpoint=oauth_login),
Route("/oauth-authorize", endpoint=oauth_authorize), Route("/oauth-authorize", endpoint=oauth_authorize),
Route("/confirm/{token}", endpoint=confirm_email_handler), Route("/confirm/{token}", endpoint=confirm_email_handler)
Route("/messages", endpoint=sse_messages)
] ]
app = Starlette( app = Starlette(