JWT refresh tokens remove

This commit is contained in:
2025-09-22 01:58:26 +03:00
parent 909d4d84b6
commit d5003b5dcb
5 changed files with 22 additions and 63 deletions

View File

@@ -23,8 +23,6 @@ class UsersInfo(BaseModel):
@validator('password')
def password_validator(cls, password):
return check_password_complexity(cls, password)
class IdofPersons(UsersInfo):
id:int = Field(..., description="Unique identifier of the user")
class CreateUser(UsersInfo):
pass
class UserUpdate(BaseModel):