1
0
Fork 0

Remove dashes from actor names

This commit is contained in:
Chocobozzz 2018-12-07 14:56:56 +01:00
parent d0ce42c1c1
commit 6ebfaf6764
No known key found for this signature in database
GPG key ID: 583A612D890159BE
2 changed files with 4 additions and 4 deletions

View file

@ -25,13 +25,13 @@ export class UserValidatorsService {
Validators.required,
Validators.minLength(1),
Validators.maxLength(50),
Validators.pattern(/^[a-z0-9][a-z0-9-._]*$/)
Validators.pattern(/^[a-z0-9][a-z0-9._]*$/)
],
MESSAGES: {
'required': this.i18n('Username is required.'),
'minlength': this.i18n('Username must be at least 1 character long.'),
'maxlength': this.i18n('Username cannot be more than 50 characters long.'),
'pattern': this.i18n('Username should be lowercase alphanumeric; dots, dashes and underscores are allowed.')
'pattern': this.i18n('Username should be lowercase alphanumeric; underscores are allowed.')
}
}

View file

@ -16,13 +16,13 @@ export class VideoChannelValidatorsService {
Validators.required,
Validators.minLength(1),
Validators.maxLength(50),
Validators.pattern(/^[a-z0-9][a-z0-9-._]*$/)
Validators.pattern(/^[a-z0-9][a-z0-9._]*$/)
],
MESSAGES: {
'required': this.i18n('Name is required.'),
'minlength': this.i18n('Name must be at least 1 character long.'),
'maxlength': this.i18n('Name cannot be more than 50 characters long.'),
'pattern': this.i18n('Name should be lowercase alphanumeric; dots, dashes and underscores are allowed.')
'pattern': this.i18n('Name should be lowercase alphanumeric; underscores are allowed.')
}
}