aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins/server/managers/plugin-video-privacy-manager.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/plugins/server/managers/plugin-video-privacy-manager.model.ts')
-rw-r--r--shared/models/plugins/server/managers/plugin-video-privacy-manager.model.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/shared/models/plugins/server/managers/plugin-video-privacy-manager.model.ts b/shared/models/plugins/server/managers/plugin-video-privacy-manager.model.ts
deleted file mode 100644
index a237037db..000000000
--- a/shared/models/plugins/server/managers/plugin-video-privacy-manager.model.ts
+++ /dev/null
@@ -1,13 +0,0 @@
1import { VideoPrivacy } from '../../../videos/video-privacy.enum'
2import { ConstantManager } from '../plugin-constant-manager.model'
3
4export 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}