X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=server%2Ftypings%2Fmodels%2Fvideo%2Fvideo-abuse.ts;h=d60f05e4cd21413b1e1e06749d0856f2147a2afd;hb=d6d951ddc0c492f3261065b5dcb4df0534d252fc;hp=955ec478057e6f6583a26d123acc1040ac1f50d1;hpb=7024e9120b381b5b3201212f5a18f5cdc14e15ff;p=oweals%2Fpeertube.git diff --git a/server/typings/models/video/video-abuse.ts b/server/typings/models/video/video-abuse.ts index 955ec4780..d60f05e4c 100644 --- a/server/typings/models/video/video-abuse.ts +++ b/server/typings/models/video/video-abuse.ts @@ -1,6 +1,6 @@ import { VideoAbuseModel } from '../../../models/video/video-abuse' import { PickWith } from '../../utils' -import { MVideo } from './video' +import { MVideoAccountLightBlacklistAllFiles, MVideo } from './video' import { MAccountDefault, MAccountFormattable } from '../account' type Use = PickWith @@ -21,7 +21,7 @@ export type MVideoAbuseVideo = export type MVideoAbuseAccountVideo = MVideoAbuse & Pick & - Use<'Video', MVideo> & + Use<'Video', MVideoAccountLightBlacklistAllFiles> & Use<'Account', MAccountDefault> // ############################################################################ @@ -31,4 +31,5 @@ export type MVideoAbuseAccountVideo = export type MVideoAbuseFormattable = MVideoAbuse & Use<'Account', MAccountFormattable> & - Use<'Video', Pick> + Use<'Video', Pick>