]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/abuse/video-abuse.model.ts
Fix tables width, paginators, button on mobile / touchscreens (#2695)
[github/Chocobozzz/PeerTube.git] / shared / models / videos / abuse / video-abuse.model.ts
CommitLineData
59c76ffa
C
1import { Account } from '../../actors/index'
2import { VideoConstant } from '../video-constant.model'
268eebed 3import { VideoAbuseState } from './video-abuse-state.model'
19a3b914 4
69818c93
C
5export interface VideoAbuse {
6 id: number
69818c93 7 reason: string
19a3b914 8 reporterAccount: Account
268eebed
C
9
10 state: VideoConstant<VideoAbuseState>
11 moderationComment?: string
12
19a3b914
C
13 video: {
14 id: number
15 name: string
16 uuid: string
19a3b914 17 }
268eebed 18
69818c93
C
19 createdAt: Date
20}