refactor: Improved prompt for personalization.

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-05-19 20:48:48 -07:00
parent 8a23d43e8a
commit f824842ec3
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"],
)