PeerTube/shared/models/videos/abuse/video-abuse.model.ts

21 lines
405 B
TypeScript
Raw Normal View History

2018-08-14 14:59:53 +02:00
import { Account } from '../../actors/index'
import { VideoConstant } from '../video-constant.model'
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
state: VideoConstant<VideoAbuseState>
moderationComment?: string
2018-03-12 11:29:46 +01:00
video: {
id: number
name: string
uuid: string
}
2017-06-10 22:15:25 +02:00
createdAt: Date
}