refactor: Improved prompt for personalization.

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-05-19 20:49:47 -07:00
parent 23b48e5945
commit ad13d815a5
4 changed files with 38 additions and 9 deletions

View file

@ -60,7 +60,12 @@ app.include_router(
tags=["users"],
)
app.include_router(
fastapi_users.get_oauth_router(google_oauth_client, auth_backend, SECRET, is_verified_by_default=True),
fastapi_users.get_oauth_router(
google_oauth_client,
auth_backend,
SECRET,
is_verified_by_default=True
),
prefix="/auth/google",
tags=["auth"],
)