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