2018-08-14 14:59:53 +02:00
|
|
|
import { Account } from '../../actors/index'
|
|
|
|
import { VideoConstant } from '../video-constant.model'
|
2018-08-10 16:54:01 +02:00
|
|
|
import { VideoAbuseState } from './video-abuse-state.model'
|
2018-03-12 11:29:46 +01:00
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
export interface VideoAbuse {
|
|
|
|
id: number
|
|
|
|
reason: string
|
2018-03-12 11:29:46 +01:00
|
|
|
reporterAccount: Account
|
2018-08-10 16:54:01 +02:00
|
|
|
|
|
|
|
state: VideoConstant<VideoAbuseState>
|
|
|
|
moderationComment?: string
|
|
|
|
|
2018-03-12 11:29:46 +01:00
|
|
|
video: {
|
|
|
|
id: number
|
|
|
|
name: string
|
|
|
|
uuid: string
|
2020-04-16 14:22:27 +02:00
|
|
|
nsfw: boolean
|
|
|
|
deleted: boolean
|
2018-03-12 11:29:46 +01:00
|
|
|
}
|
2018-08-10 16:54:01 +02:00
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
createdAt: Date
|
|
|
|
}
|