aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-schedule-update.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos/video-schedule-update.model.ts')
-rw-r--r--shared/models/videos/video-schedule-update.model.ts2
1 files changed, 1 insertions, 1 deletions
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
3export interface VideoScheduleUpdate { 3export 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}