]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/activitypub/objects/video-comment-object.ts
Add missing mediaType info to AP objects
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / objects / video-comment-object.ts
CommitLineData
d7e70384
C
1import { ActivityTagObject } from './common-objects'
2
6d852470
C
3export interface VideoCommentObject {
4 type: 'Note'
5 id: string
3726c372 6
6d852470 7 content: string
3726c372
C
8 mediaType: 'text/markdown'
9
6d852470
C
10 inReplyTo: string
11 published: string
da854ddd 12 updated: string
6d852470 13 url: string
da854ddd 14 attributedTo: string
d7e70384 15 tag: ActivityTagObject[]
6d852470 16}