]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - shared/models/videos/abuse/video-abuse.model.ts
Fix broken playlist api
[github/Chocobozzz/PeerTube.git] / shared / models / videos / abuse / video-abuse.model.ts
... / ...
CommitLineData
1import { Account } from '../../actors/index'
2import { VideoConstant } from '../video-constant.model'
3import { VideoAbuseState } from './video-abuse-state.model'
4
5export interface VideoAbuse {
6 id: number
7 reason: string
8 reporterAccount: Account
9
10 state: VideoConstant<VideoAbuseState>
11 moderationComment?: string
12
13 video: {
14 id: number
15 name: string
16 uuid: string
17 }
18
19 createdAt: Date
20}