1
0
Fork 0
peertube/server/helpers/custom-validators/metrics.ts

11 lines
280 B
TypeScript

function isValidPlayerMode (value: any) {
// TODO: remove webtorrent in v7
return value === 'webtorrent' || value === 'web-video' || value === 'p2p-media-loader'
}
// ---------------------------------------------------------------------------
export {
isValidPlayerMode
}