This commit is contained in:
Timothy Jaeryang Baek
2026-02-02 10:04:13 -06:00
parent cda08aaed4
commit 527d48efa9

View File

@@ -243,6 +243,7 @@ class UsersTable:
email: str,
profile_image_url: str = "/user.png",
role: str = "pending",
username: Optional[str] = None,
oauth: Optional[dict] = None,
db: Optional[Session] = None,
) -> Optional[UserModel]:
@@ -257,6 +258,7 @@ class UsersTable:
"last_active_at": int(time.time()),
"created_at": int(time.time()),
"updated_at": int(time.time()),
"username": username,
"oauth": oauth,
}
)