]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - shared/models/videos/video-abuse.model.ts
Fix dockerfile
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-abuse.model.ts
... / ...
CommitLineData
1import { Account } from '../actors'
2
3export interface VideoAbuse {
4 id: number
5 reason: string
6 reporterAccount: Account
7 video: {
8 id: number
9 name: string
10 uuid: string
11 url: string
12 }
13 createdAt: Date
14}