]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/activitypub/activitypub-actor.ts
Merge branch 'develop' into pr/1285
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / activitypub-actor.ts
index d9f80b94c88694ee2656813e5a87a3def8070900..119bc22d4e621e5a4bcc03ca1b97e686b210918b 100644 (file)
@@ -19,6 +19,7 @@ export interface ActivityPubActor {
   summary: string
   attributedTo: ActivityPubAttributedTo[]
 
+  support?: string
   uuid: string
   publicKey: {
     id: string
@@ -26,7 +27,9 @@ export interface ActivityPubActor {
     publicKeyPem: string
   }
 
-  // Not used
-  // icon: string[]
-  // liked: string
+  icon: {
+    type: 'Image'
+    mediaType: 'image/png'
+    url: string
+  }
 }