aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models')
-rw-r--r--shared/models/videos/video-comment.model.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/shared/models/videos/video-comment.model.ts b/shared/models/videos/video-comment.model.ts
index d572927c2..7ac4024fb 100644
--- a/shared/models/videos/video-comment.model.ts
+++ b/shared/models/videos/video-comment.model.ts
@@ -1,3 +1,5 @@
1import { Account } from '../actors'
2
1export interface VideoComment { 3export interface VideoComment {
2 id: number 4 id: number
3 url: string 5 url: string
@@ -8,10 +10,7 @@ export interface VideoComment {
8 createdAt: Date | string 10 createdAt: Date | string
9 updatedAt: Date | string 11 updatedAt: Date | string
10 totalReplies: number 12 totalReplies: number
11 account: { 13 account: Account
12 name: string
13 host: string
14 }
15} 14}
16 15
17export interface VideoCommentThreadTree { 16export interface VideoCommentThreadTree {