diff options
author | Chocobozzz <me@florianbigard.com> | 2018-03-22 18:40:33 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-03-22 18:40:56 +0100 |
commit | 6be84cbcea99518e8eca58c76259effd0dd992fd (patch) | |
tree | c2b4b22c8b60528025b172013d72c12f8ba06192 /shared/models/activitypub | |
parent | 9e841674da612b68bf84a427a8710a44347083f5 (diff) | |
download | PeerTube-6be84cbcea99518e8eca58c76259effd0dd992fd.tar.gz PeerTube-6be84cbcea99518e8eca58c76259effd0dd992fd.tar.zst PeerTube-6be84cbcea99518e8eca58c76259effd0dd992fd.zip |
Improve activity pub actors implementation
Diffstat (limited to 'shared/models/activitypub')
-rw-r--r-- | shared/models/activitypub/activity.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/models/activitypub/activity.ts b/shared/models/activitypub/activity.ts index a28260ffd..f555f0118 100644 --- a/shared/models/activitypub/activity.ts +++ b/shared/models/activitypub/activity.ts | |||
@@ -22,7 +22,7 @@ export interface BaseActivity { | |||
22 | id: string | 22 | id: string |
23 | to?: string[] | 23 | to?: string[] |
24 | cc?: string[] | 24 | cc?: string[] |
25 | actor: string | 25 | actor: string | ActivityPubActor |
26 | type: ActivityType | 26 | type: ActivityType |
27 | signature?: ActivityPubSignature | 27 | signature?: ActivityPubSignature |
28 | } | 28 | } |