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