1
0
Fork 0
peertube/server/helpers/custom-validators/bulk.ts
2020-05-29 09:21:26 +02:00

9 lines
244 B
TypeScript

function isBulkRemoveCommentsOfScopeValid (value: string) {
return value === 'my-videos' || value === 'instance'
}
// ---------------------------------------------------------------------------
export {
isBulkRemoveCommentsOfScopeValid
}