aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins/server/managers/plugin-playlist-privacy-manager.model.ts
blob: 4703c0a8bb11d3a971df126cf3d12369015b83c8 (plain) (blame)
1
2
3
4
5
6
7
8
import { VideoPlaylistPrivacy } from '../../../videos/playlist/video-playlist-privacy.model'

export interface PluginPlaylistPrivacyManager {
  // PUBLIC = 1,
  // UNLISTED = 2,
  // PRIVATE = 3
  deletePlaylistPrivacy: (privacyKey: VideoPlaylistPrivacy) => boolean
}