]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video-update.model.ts
Translated using Weblate (Galician)
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-update.model.ts
index 62e02e0794cb7910eb491f379f5aede0c7797638..e21ccae04ed55a1dbab53b5ef0e872aed1813b6e 100644 (file)
@@ -1,6 +1,5 @@
 import { VideoPrivacy } from './video-privacy.enum'
 import { VideoScheduleUpdate } from './video-schedule-update.model'
-
 export interface VideoUpdate {
   name?: string
   category?: number
@@ -11,6 +10,7 @@ export interface VideoUpdate {
   privacy?: VideoPrivacy
   tags?: string[]
   commentsEnabled?: boolean
+  downloadEnabled?: boolean
   nsfw?: boolean
   waitTranscoding?: boolean
   channelId?: number
@@ -18,4 +18,6 @@ export interface VideoUpdate {
   previewfile?: Blob
   scheduleUpdate?: VideoScheduleUpdate
   originallyPublishedAt?: Date | string
+
+  pluginData?: any
 }