fix #382 generic error when password is too long (#383)

pull/376/merge
jomo 2018-03-23 08:13:33 +00:00 committed by Chocobozzz
parent 8e8234abba
commit dce1d7957d
1 changed files with 7 additions and 2 deletions

View File

@ -22,10 +22,15 @@ export const USER_EMAIL = {
} }
} }
export const USER_PASSWORD = { export const USER_PASSWORD = {
VALIDATORS: [ Validators.required, Validators.minLength(6) ], VALIDATORS: [
Validators.required,
Validators.minLength(6),
Validators.maxLength(255)
],
MESSAGES: { MESSAGES: {
'required': 'Password is required.', 'required': 'Password is required.',
'minlength': 'Password must be at least 6 characters long.' 'minlength': 'Password must be at least 6 characters long.',
'maxlength': 'Password cannot be more than 255 characters long.'
} }
} }
export const USER_VIDEO_QUOTA = { export const USER_VIDEO_QUOTA = {