diff options
Diffstat (limited to 'shared/models/videos')
-rw-r--r-- | shared/models/videos/video-privacy.enum.ts | 3 | ||||
-rw-r--r-- | shared/models/videos/video-schedule-update.model.ts | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/shared/models/videos/video-privacy.enum.ts b/shared/models/videos/video-privacy.enum.ts index 29888c7b8..17ed0c9bb 100644 --- a/shared/models/videos/video-privacy.enum.ts +++ b/shared/models/videos/video-privacy.enum.ts | |||
@@ -1,5 +1,6 @@ | |||
1 | export enum VideoPrivacy { | 1 | export enum VideoPrivacy { |
2 | PUBLIC = 1, | 2 | PUBLIC = 1, |
3 | UNLISTED = 2, | 3 | UNLISTED = 2, |
4 | PRIVATE = 3 | 4 | PRIVATE = 3, |
5 | INTERNAL = 4 | ||
5 | } | 6 | } |
diff --git a/shared/models/videos/video-schedule-update.model.ts b/shared/models/videos/video-schedule-update.model.ts index b865c1614..87d74f654 100644 --- a/shared/models/videos/video-schedule-update.model.ts +++ b/shared/models/videos/video-schedule-update.model.ts | |||
@@ -2,5 +2,5 @@ import { VideoPrivacy } from './video-privacy.enum' | |||
2 | 2 | ||
3 | export interface VideoScheduleUpdate { | 3 | export interface VideoScheduleUpdate { |
4 | updateAt: Date | string | 4 | updateAt: Date | string |
5 | privacy?: VideoPrivacy.PUBLIC | VideoPrivacy.UNLISTED // Cannot schedule an update to PRIVATE | 5 | privacy?: VideoPrivacy.PUBLIC | VideoPrivacy.UNLISTED | VideoPrivacy.INTERNAL // Cannot schedule an update to PRIVATE |
6 | } | 6 | } |