From 86521a67b2edb06a139b095e489c205457eaba8f Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Fri, 17 Apr 2020 10:47:22 +0200 Subject: Add video channel and video thumbnail, rework video appearance in row --- shared/models/videos/abuse/video-abuse.model.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'shared/models/videos') diff --git a/shared/models/videos/abuse/video-abuse.model.ts b/shared/models/videos/abuse/video-abuse.model.ts index b47ee05a0..953193e5e 100644 --- a/shared/models/videos/abuse/video-abuse.model.ts +++ b/shared/models/videos/abuse/video-abuse.model.ts @@ -1,6 +1,7 @@ import { Account } from '../../actors/index' import { VideoConstant } from '../video-constant.model' import { VideoAbuseState } from './video-abuse-state.model' +import { VideoChannelSummary } from '../channel/video-channel.model' export interface VideoAbuse { id: number @@ -16,6 +17,9 @@ export interface VideoAbuse { uuid: string nsfw: boolean deleted: boolean + blacklisted: boolean + thumbnailPath?: string + channel?: VideoChannelSummary } createdAt: Date -- cgit v1.2.3