Sfoglia il codice sorgente

passsword mod1

main
Madiwka3 1 anno fa
parent
commit
b2aa4eb0b0
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      app/schemas/user.py

+ 1
- 1
app/schemas/user.py Vedi File

@@ -6,7 +6,7 @@ from typing import Optional, List

class UserCreate(BaseModel):
Email: EmailStr
Password: str = Field(..., min_length=7, max_length=20)
Password: str = Field(...)
Name: str = Field(..., min_length=3, max_length=50)
MiddleName: str = Field(None)
LastName: str = Field(..., min_length=3, max_length=50)


Caricamento…
Annulla
Salva