Require password when creating user (#74)
This commit is contained in:
Родитель
60c60488f2
Коммит
fc9011e1a1
|
@ -24,7 +24,7 @@ type CreateUserOption struct {
|
||||||
// in: body
|
// in: body
|
||||||
Email string `json:"email" binding:"Required;Email;MaxSize(254)"`
|
Email string `json:"email" binding:"Required;Email;MaxSize(254)"`
|
||||||
// in: body
|
// in: body
|
||||||
Password string `json:"password" binding:"MaxSize(255)"`
|
Password string `json:"password" binding:"Required;MaxSize(255)"`
|
||||||
// in: body
|
// in: body
|
||||||
SendNotify bool `json:"send_notify"`
|
SendNotify bool `json:"send_notify"`
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче