]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/activitypub/objects/playlist-object.ts
Remove comments, rates and views from stats
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / objects / playlist-object.ts
index 5f6733f92a1b8fa143f236a0d52aa646742fa48d..842c037909f51e3cea3167cb2429f584042bbc7d 100644 (file)
@@ -5,13 +5,19 @@ export interface PlaylistObject {
   type: 'Playlist'
 
   name: string
+
   content: string
+  mediaType: 'text/markdown'
+
   uuid: string
 
   totalItems: number
   attributedTo: string[]
 
-  icon: ActivityIconObject
+  icon?: ActivityIconObject
+
+  published: string
+  updated: string
 
   orderedItems?: string[]