X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftypes%2Fmodels%2Fvideo%2Fvideo-change-ownership.ts;h=6cad48e4a91c9a8f7dbbd976a451c2f0e46d174a;hb=7d9ba5c08999c6482f0bc5e0c09c6f55b7724090;hp=244d1a6713aaf9a68030865d9d600821dbf265c4;hpb=67ed6552b831df66713bac9e672738796128d33f;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/types/models/video/video-change-ownership.ts b/server/types/models/video/video-change-ownership.ts index 244d1a671..6cad48e4a 100644 --- a/server/types/models/video/video-change-ownership.ts +++ b/server/types/models/video/video-change-ownership.ts @@ -1,7 +1,7 @@ import { VideoChangeOwnershipModel } from '@server/models/video/video-change-ownership' import { PickWith } from '@shared/core-utils' import { MAccountDefault, MAccountFormattable } from '../account/account' -import { MVideo, MVideoWithAllFiles } from './video' +import { MVideoWithAllFiles, MVideoFormattable } from './video' type Use = PickWith @@ -23,4 +23,4 @@ export type MVideoChangeOwnershipFormattable = Pick & Use<'Initiator', MAccountFormattable> & Use<'NextOwner', MAccountFormattable> & - Use<'Video', Pick> + Use<'Video', MVideoFormattable>