]> 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 72efe42b31504419391200c06d8c60bd046cabf6..dcce8696b6ab6a6deb3bc6c60051f6e0f2efd353 100644 (file)
@@ -1,4 +1,4 @@
-import { ActivityIdentifierObject } from './common-objects'
+import { ActivityPubOrderedCollection } from '../activitypub-ordered-collection'
 
 export interface VideoChannelObject {
   type: 'VideoChannel'
@@ -6,6 +6,8 @@ export interface VideoChannelObject {
   name: string
   content: string
   uuid: string
-  published: Date
-  updated: Date
+  published: string
+  updated: string
+  actor?: string
+  shares?: ActivityPubOrderedCollection<string>
 }