X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fvideos%2Fvideo-update.model.ts;h=ed141a824f6959e169ac2ba9c573e1f60da68b66;hb=bbe0f0645ca958d33a3f409b15166609733b663f;hp=fc772f77baa35ae6941239c22d9825042e89a812;hpb=47564bbe2eeb2baae9b7e3f9b2b8d16522bc7e04;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/videos/video-update.model.ts b/shared/models/videos/video-update.model.ts index fc772f77b..ed141a824 100644 --- a/shared/models/videos/video-update.model.ts +++ b/shared/models/videos/video-update.model.ts @@ -1,13 +1,20 @@ import { VideoPrivacy } from './video-privacy.enum' +import { VideoScheduleUpdate } from './video-schedule-update.model' export interface VideoUpdate { name?: string category?: number licence?: number - language?: number + language?: string description?: string + support?: string privacy?: VideoPrivacy tags?: string[] commentsEnabled?: boolean nsfw?: boolean + waitTranscoding?: boolean + channelId?: number + thumbnailfile?: Blob + previewfile?: Blob + scheduleUpdate?: VideoScheduleUpdate }