aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-11-07 15:47:48 -0600
committerParker <contact@pkrm.dev>2024-11-07 15:47:48 -0600
commit62c034261d9dadadb4abe26c51c007b5423c14d8 (patch)
tree2ca2e6f0ee16699a62e681495b47ca8cada6c76b
parent6fafa9f387e9d540c4a01d5a316c7bf72076d2fc (diff)
Remove useless commented code
-rw-r--r--app/routes/auth_routes.py7
1 files changed, 0 insertions, 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