X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fvideos%2Fplaylist%2Fvideo-playlist-create.model.ts;h=67a33fa3599415b6d9fc4822144f14491602629e;hb=df0b219d36bf6852cdf2a7ad09ed4a41c6bccefa;hp=386acbb960e9e47c5deaff2f84c3c6cfcc37365b;hpb=418d092afa81e2c8fe8ac6838fc4b5eb0af6a782;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/videos/playlist/video-playlist-create.model.ts b/shared/models/videos/playlist/video-playlist-create.model.ts index 386acbb96..67a33fa35 100644 --- a/shared/models/videos/playlist/video-playlist-create.model.ts +++ b/shared/models/videos/playlist/video-playlist-create.model.ts @@ -2,10 +2,10 @@ import { VideoPlaylistPrivacy } from './video-playlist-privacy.model' export interface VideoPlaylistCreate { displayName: string - description: string privacy: VideoPlaylistPrivacy + description?: string videoChannelId?: number - thumbnailfile?: Blob + thumbnailfile?: any }