diff options
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.ts | 13 |
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 @@ | |||
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 | } | ||