X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Factivitypub%2Fobjects%2Fvideo-comment-object.ts;h=ba90017307534b37f51cd8ce13917f27a8fbe251;hb=f18a060a83d7053897173b2a24fb7984893131c7;hp=fc2a9e83709cff15e9fbf61a4113bc5b1d3f73c5;hpb=6d8524702874120a4667269a81a61e3c7c5e300d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/activitypub/objects/video-comment-object.ts b/shared/models/activitypub/objects/video-comment-object.ts index fc2a9e837..ba9001730 100644 --- a/shared/models/activitypub/objects/video-comment-object.ts +++ b/shared/models/activitypub/objects/video-comment-object.ts @@ -1,8 +1,16 @@ +import { ActivityTagObject } from './common-objects' + export interface VideoCommentObject { type: 'Note' id: string + content: string + mediaType: 'text/markdown' + inReplyTo: string published: string + updated: string url: string + attributedTo: string + tag: ActivityTagObject[] }