aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins/server/managers/plugin-playlist-privacy-manager.model.ts
blob: 35247c1e371f43895ae74f2cb28fb599c31ccf22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { VideoPlaylistPrivacy } from '../../../videos/playlist/video-playlist-privacy.model'
import { ConstantManager } from '../plugin-constant-manager.model'

export interface PluginPlaylistPrivacyManager extends ConstantManager<VideoPlaylistPrivacy> {
  /**
   * PUBLIC = 1,
   * UNLISTED = 2,
   * PRIVATE = 3
   * @deprecated use `deleteConstant` instead
   */
  deletePlaylistPrivacy: (privacyKey: VideoPlaylistPrivacy) => boolean
}