]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video-create.model.ts
Add ability to schedule video publication
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-create.model.ts
index 139c2579e2ae2baf49ce3db5d5c9b26e8502c839..190d637832719d744d45f8430b47584134ec1686 100644 (file)
@@ -1,14 +1,18 @@
 import { VideoPrivacy } from './video-privacy.enum'
+import { VideoScheduleUpdate } from './video-schedule-update.model'
 
 export interface VideoCreate {
   category?: number
   licence?: number
-  language?: number
+  language?: string
   description?: string
+  support?: string
   channelId: number
-  nsfw: boolean
+  nsfw?: boolean
+  waitTranscoding?: boolean
   name: string
   tags?: string[]
   commentsEnabled?: boolean
   privacy: VideoPrivacy
+  scheduleUpdate?: VideoScheduleUpdate
 }