allow usernames with min 3 chars

This commit is contained in:
benjaminbear 2022-05-29 15:44:28 +02:00 committed by GitHub
parent 6d16ce7b3f
commit 0f8b4b578d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ type Host struct {
Ip string `form:"ip" validate:"omitempty,ipv4"`
Ttl int `form:"ttl" validate:"required,min=20,max=86400"`
LastUpdate time.Time `form:"lastupdate"`
UserName string `gorm:"unique" form:"username" validate:"min=8"`
UserName string `gorm:"unique" form:"username" validate:"min=3"`
Password string `form:"password" validate:"min=8"`
}