feat: profile update frontend integration

This commit is contained in:
Timothy J. Baek 2024-01-26 21:22:25 -08:00
parent 418da74756
commit 3ce8f3e8fb
6 changed files with 324 additions and 214 deletions

View file

@ -67,6 +67,11 @@ class ProfileImageUrlForm(BaseModel):
profile_image_url: str
class UpdateProfileForm(BaseModel):
profile_image_url: str
name: str
class UpdatePasswordForm(BaseModel):
password: str
new_password: str