mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-29 03:53:59 -06:00
13 lines
284 B
TypeScript
13 lines
284 B
TypeScript
import { exists } from './misc'
|
|
|
|
function isVideoRedundancyTarget (value: any) {
|
|
return exists(value) &&
|
|
(value === 'my-videos' || value === 'remote-videos')
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
isVideoRedundancyTarget
|
|
}
|