diff options
Diffstat (limited to 'shared/models/videos/video-create.model.ts')
-rw-r--r-- | shared/models/videos/video-create.model.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/shared/models/videos/video-create.model.ts b/shared/models/videos/video-create.model.ts index 531eafe54..190d63783 100644 --- a/shared/models/videos/video-create.model.ts +++ b/shared/models/videos/video-create.model.ts | |||
@@ -1,4 +1,5 @@ | |||
1 | import { VideoPrivacy } from './video-privacy.enum' | 1 | import { VideoPrivacy } from './video-privacy.enum' |
2 | import { VideoScheduleUpdate } from './video-schedule-update.model' | ||
2 | 3 | ||
3 | export interface VideoCreate { | 4 | export interface VideoCreate { |
4 | category?: number | 5 | category?: number |
@@ -13,8 +14,5 @@ export interface VideoCreate { | |||
13 | tags?: string[] | 14 | tags?: string[] |
14 | commentsEnabled?: boolean | 15 | commentsEnabled?: boolean |
15 | privacy: VideoPrivacy | 16 | privacy: VideoPrivacy |
16 | scheduleUpdate?: { | 17 | scheduleUpdate?: VideoScheduleUpdate |
17 | updateAt: Date | ||
18 | privacy?: VideoPrivacy.PUBLIC | VideoPrivacy.UNLISTED | ||
19 | } | ||
20 | } | 18 | } |