]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/activitypub/objects/video-channel-object.ts
Add shares forward and collection on videos/video channels
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / objects / video-channel-object.ts
index d64b4aed85c4f8880b199f154511b65f016ee192..dcce8696b6ab6a6deb3bc6c60051f6e0f2efd353 100644 (file)
@@ -1,8 +1,13 @@
-import { ActivityIdentifierObject } from './common-objects'
+import { ActivityPubOrderedCollection } from '../activitypub-ordered-collection'
 
 export interface VideoChannelObject {
   type: 'VideoChannel'
+  id: string
   name: string
   content: string
-  uuid: ActivityIdentifierObject
+  uuid: string
+  published: string
+  updated: string
+  actor?: string
+  shares?: ActivityPubOrderedCollection<string>
 }