Madiwka3 před 1 rokem
rodič
revize
d291abc762
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

@@ -10,7 +10,7 @@ class UserCreate(BaseModel):
Name: str = Field(..., min_length=3, max_length=50)
MiddleName: str = Field(None)
LastName: str = Field(..., min_length=3, max_length=50)
ContactNumber: str = Field(..., min_length=12, max_length=12)
ContactNumber: str = Field(..., min_length=6, max_length=16)
GovernmentId: str = Field(...)
Address: str = Field(...)
Email: EmailStr = Field(...)


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