]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/forms/form-validators/video-abuse.ts
Client: add basic support to report video abuses
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / forms / form-validators / video-abuse.ts
1 import { Validators } from '@angular/forms';
2
3 export const VIDEO_ABUSE_REASON = {
4 VALIDATORS: [ Validators.required, Validators.minLength(2), Validators.maxLength(300) ],
5 MESSAGES: {
6 'required': 'Report reason name is required.',
7 'minlength': 'Report reson must be at least 2 characters long.',
8 'maxlength': 'Report reson cannot be more than 300 characters long.'
9 }
10 };