]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video-update.model.ts
Add nth abuse count for a given video, add reporter/reportee reports stats
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-update.model.ts
index bf7a9af37a6436b489680b3b3508025416d5d398..4ef9041560edc68b1615f41d005e839e5125edfd 100644 (file)
@@ -11,11 +11,12 @@ export interface VideoUpdate {
   privacy?: VideoPrivacy
   tags?: string[]
   commentsEnabled?: boolean
-  downloadingEnabled?: boolean
+  downloadEnabled?: boolean
   nsfw?: boolean
   waitTranscoding?: boolean
   channelId?: number
   thumbnailfile?: Blob
   previewfile?: Blob
   scheduleUpdate?: VideoScheduleUpdate
+  originallyPublishedAt?: Date | string
 }