]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video-create.model.ts
Merge branch 'feature/correctly-send-activities' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-create.model.ts
index 4d0e83520fe3a8da392bd23e000bf0de3b640575..190d637832719d744d45f8430b47584134ec1686 100644 (file)
@@ -1,10 +1,18 @@
+import { VideoPrivacy } from './video-privacy.enum'
+import { VideoScheduleUpdate } from './video-schedule-update.model'
+
 export interface VideoCreate {
-  category: number
-  licence: number
-  language: number
-  description: string
+  category?: number
+  licence?: number
+  language?: string
+  description?: string
+  support?: string
   channelId: number
-  nsfw: boolean
+  nsfw?: boolean
+  waitTranscoding?: boolean
   name: string
-  tags: string[]
+  tags?: string[]
+  commentsEnabled?: boolean
+  privacy: VideoPrivacy
+  scheduleUpdate?: VideoScheduleUpdate
 }