X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=shared%2Fmodels%2Fvideos%2Fvideo-update.model.ts;h=86653b959a73b257e4fa2db8b2d1d6a7ff06eda9;hb=527a52ac4295a072927ff46761766a8b181a7603;hp=681b00b1874e8027be15ac2d8666373976315322;hpb=2186386cca113506791583cb07d6ccacba7af4e0;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/videos/video-update.model.ts b/shared/models/videos/video-update.model.ts index 681b00b18..86653b959 100644 --- a/shared/models/videos/video-update.model.ts +++ b/shared/models/videos/video-update.model.ts @@ -1,4 +1,5 @@ import { VideoPrivacy } from './video-privacy.enum' +import { VideoScheduleUpdate } from './video-schedule-update.model' export interface VideoUpdate { name?: string @@ -10,9 +11,14 @@ export interface VideoUpdate { privacy?: VideoPrivacy tags?: string[] commentsEnabled?: boolean + downloadEnabled?: boolean nsfw?: boolean waitTranscoding?: boolean channelId?: number thumbnailfile?: Blob previewfile?: Blob + scheduleUpdate?: VideoScheduleUpdate + originallyPublishedAt?: Date | string + + pluginData?: any }