]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/plugins/server/managers/plugin-video-privacy-manager.model.ts
Rename studio to editor
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / server / managers / plugin-video-privacy-manager.model.ts
1 import { VideoPrivacy } from '../../../videos/video-privacy.enum'
2 import { ConstantManager } from '../plugin-constant-manager.model'
3
4 export interface PluginVideoPrivacyManager extends ConstantManager<VideoPrivacy> {
5 /**
6 * PUBLIC = 1,
7 * UNLISTED = 2,
8 * PRIVATE = 3
9 * INTERNAL = 4
10 * @deprecated use `deleteConstant` instead
11 */
12 deletePrivacy: (privacyKey: VideoPrivacy) => boolean
13 }