diff options
author | Parker <contact@pkrm.dev> | 2024-11-05 20:36:09 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-11-05 20:36:09 -0600 |
commit | e944df3d7d431b5bd88c2c235501a355ea1ba6ab (patch) | |
tree | 283a28cb77f2439d20ba00869de15cf65c2c450a /app/schemas/user_schemas.py | |
parent | 6f7e810916fd2de39d451886bbe18167e1784315 (diff) |
Fix auth and organization/standards
Diffstat (limited to 'app/schemas/user_schemas.py')
-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 |