Merge pull request #1386 from dannyl1u/feat/profile-image-initials

feat: default profile image with user initials
This commit is contained in:
Timothy Jaeryang Baek 2024-04-06 23:59:20 -07:00 committed by GitHub
commit 02d3fb427b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 248 additions and 27 deletions

View file

@ -31,7 +31,7 @@ class UserModel(BaseModel):
name: str
email: str
role: str = "pending"
profile_image_url: str = "/user.png"
profile_image_url: str
timestamp: int # timestamp in epoch
api_key: Optional[str] = None
@ -59,7 +59,12 @@ class UsersTable:
self.db.create_tables([User])
def insert_new_user(
self, id: str, name: str, email: str, role: str = "pending"
self,
id: str,
name: str,
email: str,
profile_image_url: str = "/user.png",
role: str = "pending",
) -> Optional[UserModel]:
user = UserModel(
**{
@ -67,7 +72,7 @@ class UsersTable:
"name": name,
"email": email,
"role": role,
"profile_image_url": "/user.png",
"profile_image_url": profile_image_url,
"timestamp": int(time.time()),
}
)