]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/shared/forms/form-validators/user.ts
Account/channel descriptions are not required anymore
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / forms / form-validators / user.ts
index c6b65e0df3d0de256a48b3fb71421545eaecc80b..0973f1b006214c6760948b679cd84771d4ff07e7 100644 (file)
@@ -60,12 +60,10 @@ export const USER_DISPLAY_NAME = {
 }
 export const USER_DESCRIPTION = {
   VALIDATORS: [
-    Validators.required,
     Validators.minLength(3),
     Validators.maxLength(250)
   ],
   MESSAGES: {
-    'required': 'Description is required.',
     'minlength': 'Description must be at least 3 characters long.',
     'maxlength': 'Description cannot be more than 250 characters long.'
   }