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.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/shared/models/activitypub/objects/video-comment-object.ts b/shared/models/activitypub/objects/video-comment-object.ts
deleted file mode 100644
index fb1e6f8db..000000000
--- a/shared/models/activitypub/objects/video-comment-object.ts
+++ /dev/null
@@ -1,16 +0,0 @@
1import { ActivityPubAttributedTo, ActivityTagObject } from './common-objects'
2
3export interface VideoCommentObject {
4 type: 'Note'
5 id: string
6
7 content: string
8 mediaType: 'text/markdown'
9
10 inReplyTo: string
11 published: string
12 updated: string
13 url: string
14 attributedTo: ActivityPubAttributedTo
15 tag: ActivityTagObject[]
16}