1
0
Fork 0

Use same mastodon regex for usernames

This commit is contained in:
Chocobozzz 2022-08-03 10:03:56 +02:00
parent f59462eca4
commit 35a0a92483
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -27,9 +27,9 @@ function isUserVideoQuotaDailyValid (value: string) {
}
function isUserUsernameValid (value: string) {
const max = USERS_CONSTRAINTS_FIELDS.USERNAME.max
const min = USERS_CONSTRAINTS_FIELDS.USERNAME.min
return exists(value) && validator.matches(value, new RegExp(`^[a-z0-9._]{${min},${max}}$`))
return exists(value) &&
validator.matches(value, new RegExp(`^[a-z0-9_]+([a-z0-9_.-]+[a-z0-9_]+)?$`)) &&
validator.isLength(value, USERS_CONSTRAINTS_FIELDS.USERNAME)
}
function isUserDisplayNameValid (value: string) {