Procházet zdrojové kódy

passsword mod1

main
Madiwka3 před 1 rokem
rodič
revize
b2aa4eb0b0
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      app/schemas/user.py

+ 1
- 1
app/schemas/user.py Zobrazit soubor

@@ -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)


Načítá se…
Zrušit
Uložit