]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/plugins/plugin-video-privacy-manager.model.ts
Don't guess remote tracker URL
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / plugin-video-privacy-manager.model.ts
1 import { VideoPrivacy } from '../videos/video-privacy.enum'
2
3 export interface PluginVideoPrivacyManager {
4 // PUBLIC = 1
5 // UNLISTED = 2
6 // PRIVATE = 3
7 // INTERNAL = 4
8 deletePrivacy: (privacyKey: VideoPrivacy) => boolean
9 }