]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - video-redundancies.ts
50a559c4fca33d1f39ef92eb3e14af567c87df53
[github/Chocobozzz/PeerTube.git] / video-redundancies.ts
1 import { exists } from './misc'
2
3 function isVideoRedundancyTarget (value: any) {
4 return exists(value) &&
5 (value === 'my-videos' || value === 'remote-videos')
6 }
7
8 // ---------------------------------------------------------------------------
9
10 export {
11 isVideoRedundancyTarget
12 }