Files
SolTube/server/core/helpers/custom-validators/bulk.ts
ShreejitPanchal 6601501eff Init commit
2026-05-19 19:56:02 +08:00

6 lines
265 B
TypeScript

import { BulkRemoveCommentsOfBody } from '@peertube/peertube-models'
export function isBulkRemoveCommentsOfScopeValid (value: BulkRemoveCommentsOfBody['scope']) {
return value === 'my-videos' || value === 'instance' || value === 'my-videos-and-collaborations'
}