]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/moderation/abuse/abuse-reason.model.ts
Remove deprecated abuse api
[github/Chocobozzz/PeerTube.git] / shared / models / moderation / abuse / abuse-reason.model.ts
1 export const enum AbusePredefinedReasons {
2 VIOLENT_OR_REPULSIVE = 1,
3 HATEFUL_OR_ABUSIVE,
4 SPAM_OR_MISLEADING,
5 PRIVACY,
6 RIGHTS,
7 SERVER_RULES,
8 THUMBNAILS,
9 CAPTIONS
10 }
11
12 export type AbusePredefinedReasonsString =
13 'violentOrRepulsive' |
14 'hatefulOrAbusive' |
15 'spamOrMisleading' |
16 'privacy' |
17 'rights' |
18 'serverRules' |
19 'thumbnails' |
20 'captions'