aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models')
-rw-r--r--shared/models/activitypub/objects/video-comment-object.ts2
-rw-r--r--shared/models/activitypub/objects/video-torrent-object.ts1
2 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 fc2a9e837..785fbbc0d 100644
--- a/shared/models/activitypub/objects/video-comment-object.ts
+++ b/shared/models/activitypub/objects/video-comment-object.ts
@@ -4,5 +4,7 @@ export interface VideoCommentObject {
4 content: string 4 content: string
5 inReplyTo: string 5 inReplyTo: string
6 published: string 6 published: string
7 updated: string
7 url: string 8 url: string
9 attributedTo: string
8} 10}
diff --git a/shared/models/activitypub/objects/video-torrent-object.ts b/shared/models/activitypub/objects/video-torrent-object.ts
index 1405f7748..5ccc80bcb 100644
--- a/shared/models/activitypub/objects/video-torrent-object.ts
+++ b/shared/models/activitypub/objects/video-torrent-object.ts
@@ -27,5 +27,6 @@ export interface VideoTorrentObject {
27 likes?: ActivityPubOrderedCollection<string> 27 likes?: ActivityPubOrderedCollection<string>
28 dislikes?: ActivityPubOrderedCollection<string> 28 dislikes?: ActivityPubOrderedCollection<string>
29 shares?: ActivityPubOrderedCollection<string> 29 shares?: ActivityPubOrderedCollection<string>
30 comments?: ActivityPubOrderedCollection<string>
30 attributedTo: ActivityPubAttributedTo[] 31 attributedTo: ActivityPubAttributedTo[]
31} 32}