]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video-comment.model.ts
Translated using Weblate (Korean)
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-comment.model.ts
index 69884782fbf6264d17b83b5e4f6c6ca3d268243c..eec7dba1cef7f92569476ff6ebd3d983eba35f63 100644 (file)
@@ -1,3 +1,5 @@
+import { Account } from '../actors'
+
 export interface VideoComment {
   id: number
   url: string
@@ -7,9 +9,11 @@ export interface VideoComment {
   videoId: number
   createdAt: Date | string
   updatedAt: Date | string
-  account: {
-    name: string
-  }
+  deletedAt: Date | string
+  isDeleted: boolean
+  totalRepliesFromVideoAuthor: number
+  totalReplies: number
+  account: Account
 }
 
 export interface VideoCommentThreadTree {