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