[#961] updated min username length and added tests

This commit is contained in:
Gani Georgiev
2022-11-08 12:55:18 +02:00
parent 01814067b1
commit b1c7a012c5
2 changed files with 36 additions and 1 deletions

View File

@@ -397,7 +397,7 @@ func (form *RecordUpsert) Validate() error {
&form.Username,
// require only on update, because on create we fallback to auto generated username
validation.When(!form.record.IsNew(), validation.Required),
validation.Length(4, 100),
validation.Length(3, 100),
validation.Match(usernameRegex),
validation.By(form.checkUniqueUsername),
),