]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video-abuse.model.ts
Always redirect on homepage on '/'
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-abuse.model.ts
index 38041e491b006c2dd363f0dc6ee0a86d2beaf419..51070a7a33b01e6fa36524269744bedcd02a3499 100644 (file)
@@ -1,8 +1,14 @@
+import { Account } from '../actors'
+
 export interface VideoAbuse {
   id: number
-  reporterServerHost: string
   reason: string
-  reporterUsername: string
-  videoId: number
+  reporterAccount: Account
+  video: {
+    id: number
+    name: string
+    uuid: string
+    url: string
+  }
   createdAt: Date
 }