diff options
Diffstat (limited to 'app/schemas')
-rw-r--r-- | app/schemas/user_schemas.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/schemas/user_schemas.py b/app/schemas/user_schemas.py index 70613ac..949b9a5 100644 --- a/app/schemas/user_schemas.py +++ b/app/schemas/user_schemas.py @@ -7,5 +7,5 @@ class LoginDataSchema(BaseModel): class UpdatePasswordSchema(BaseModel): - password: str + current_password: str new_password: str |