]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/activitypub/objects/video-comment-object.ts
Use sensitive instead of nsfw in activitypub
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / objects / video-comment-object.ts
index fc2a9e83709cff15e9fbf61a4113bc5b1d3f73c5..1c058b86ca3b56726d544a6910f2a360e11fe98b 100644 (file)
@@ -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[]
 }