aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos')
-rw-r--r--shared/models/videos/video-comment.model.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/shared/models/videos/video-comment.model.ts b/shared/models/videos/video-comment.model.ts
index 69884782f..d572927c2 100644
--- a/shared/models/videos/video-comment.model.ts
+++ b/shared/models/videos/video-comment.model.ts
@@ -7,8 +7,10 @@ export interface VideoComment {
7 videoId: number 7 videoId: number
8 createdAt: Date | string 8 createdAt: Date | string
9 updatedAt: Date | string 9 updatedAt: Date | string
10 totalReplies: number
10 account: { 11 account: {
11 name: string 12 name: string
13 host: string
12 } 14 }
13} 15}
14 16