X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=shared%2Fmodels%2Fvideos%2Fvideo-update.model.ts;h=ed141a824f6959e169ac2ba9c573e1f60da68b66;hb=bbe0f0645ca958d33a3f409b15166609733b663f;hp=b281ace9af0c9edc23df43ae8a54cafd090178f5;hpb=6de36768980ef6063b8fcd730b59fa685dd2b99c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/videos/video-update.model.ts b/shared/models/videos/video-update.model.ts index b281ace9a..ed141a824 100644 --- a/shared/models/videos/video-update.model.ts +++ b/shared/models/videos/video-update.model.ts @@ -1,16 +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 }