aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/video-comment-object.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/activitypub/objects/video-comment-object.ts')
-rw-r--r--shared/models/activitypub/objects/video-comment-object.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/shared/models/activitypub/objects/video-comment-object.ts b/shared/models/activitypub/objects/video-comment-object.ts
index 785fbbc0d..1c058b86c 100644
--- a/shared/models/activitypub/objects/video-comment-object.ts
+++ b/shared/models/activitypub/objects/video-comment-object.ts
@@ -1,3 +1,5 @@
1import { ActivityTagObject } from './common-objects'
2
1export interface VideoCommentObject { 3export interface VideoCommentObject {
2 type: 'Note' 4 type: 'Note'
3 id: string 5 id: string
@@ -7,4 +9,5 @@ export interface VideoCommentObject {
7 updated: string 9 updated: string
8 url: string 10 url: string
9 attributedTo: string 11 attributedTo: string
12 tag: ActivityTagObject[]
10} 13}