Chocobozzz/PeerTube

View on GitHub
server/core/helpers/custom-validators/bulk.ts

Summary

Maintainability
A
0 mins
Test Coverage
function isBulkRemoveCommentsOfScopeValid (value: string) {
  return value === 'my-videos' || value === 'instance'
}

// ---------------------------------------------------------------------------

export {
  isBulkRemoveCommentsOfScopeValid
}