feat: profile image update backend

This commit is contained in:
Timothy J. Baek 2024-01-26 20:27:45 -08:00
parent 0e831f4cf7
commit 418da74756
3 changed files with 52 additions and 11 deletions

View file

@ -63,6 +63,10 @@ class SigninForm(BaseModel):
password: str
class ProfileImageUrlForm(BaseModel):
profile_image_url: str
class UpdatePasswordForm(BaseModel):
password: str
new_password: str