X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Factivitypub%2Fobjects%2Fvideo-comment-object.ts;h=1c058b86ca3b56726d544a6910f2a360e11fe98b;hb=0a67e28beeaf603110d52df3eda400e60531b3a4;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..1c058b86c 100644 --- a/shared/models/activitypub/objects/video-comment-object.ts +++ b/shared/models/activitypub/objects/video-comment-object.ts @@ -1,8 +1,13 @@ +import { ActivityTagObject } from './common-objects' + export interface VideoCommentObject { type: 'Note' id: string content: string inReplyTo: string published: string + updated: string url: string + attributedTo: string + tag: ActivityTagObject[] }