]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video-abuse.model.ts
Add video abuse to activity pub
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-abuse.model.ts
index 38041e491b006c2dd363f0dc6ee0a86d2beaf419..aaedd00d4c1b1ceb16d9df0c74016468ae9f07d0 100644 (file)
@@ -1,8 +1,10 @@
 export interface VideoAbuse {
   id: number
-  reporterServerHost: string
   reason: string
   reporterUsername: string
+  reporterServerHost: string
   videoId: number
+  videoUUID: string
+  videoName: string
   createdAt: Date
 }