From 62c034261d9dadadb4abe26c51c007b5423c14d8 Mon Sep 17 00:00:00 2001 From: Parker Date: Thu, 7 Nov 2024 15:47:48 -0600 Subject: [PATCH] Remove useless commented code --- app/routes/auth_routes.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/routes/auth_routes.py b/app/routes/auth_routes.py index ac75228..cc7cc24 100644 --- a/app/routes/auth_routes.py +++ b/app/routes/auth_routes.py @@ -52,13 +52,6 @@ async def login_for_access_token( ) return response - # For Swagger UI to work, must return the token - # return Token( - # access_token=access_token, - # refresh_token=refresh_token, - # token_type="bearer", - # ) - # Full native JWT support is not complete in FastAPI yet :( # Part of that is token refresh, so we must implement it ourselves