]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video-blacklist.model.ts
Add http tracker in torrent too
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-blacklist.model.ts
index f894bb06523ffc0ec8aab0f4abc096aaec700bca..af04502e8b61f682fb12e4f91b43560020a996e0 100644 (file)
@@ -1,5 +1,14 @@
 export interface BlacklistedVideo {
   id: number
-  videoId: string
+  videoId: number
   createdAt: Date
+  updatedAt: Date
+  name: string
+  uuid: string
+  description: string
+  duration: number
+  views: number
+  likes: number
+  dislikes: number
+  nsfw: boolean
 }