]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/helpers/custom-validators/bulk.ts
emit more specific status codes on video upload (#3423)
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-validators / bulk.ts
1 function isBulkRemoveCommentsOfScopeValid (value: string) {
2 return value === 'my-videos' || value === 'instance'
3 }
4
5 // ---------------------------------------------------------------------------
6
7 export {
8 isBulkRemoveCommentsOfScopeValid
9 }