We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05e3755 commit ba7ed57Copy full SHA for ba7ed57
app/web/security.py
@@ -59,7 +59,7 @@ async def get_token_or_user_auth(
59
async def get_user_auth(
60
credentials: HTTPAuthorizationCredentials = Depends(bearer_security),
61
):
62
- # validates the Bearer token in the case that it requires it
+ # Validates the Bearer token in the case that it requires it
63
valid_user, info = authenticate_user(credentials.credentials)
64
if valid_user:
65
return info.lower()
0 commit comments