]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/plugins/plugin-video-privacy-manager.model.ts
Support logout and add id and pass tests
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / plugin-video-privacy-manager.model.ts
CommitLineData
b3af2601
C
1import { VideoPrivacy } from '@shared/models'
2
3export interface PluginVideoPrivacyManager {
4 // PUBLIC = 1
5 // UNLISTED = 2
6 // PRIVATE = 3
7 // INTERNAL = 4
8 deletePrivacy: (privacyKey: VideoPrivacy) => boolean
9}