diff options
author | Andrew Godwin | 2022-11-12 15:10:15 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-12 15:10:15 -0700 |
commit | dd4328ae523bb375dd871e85d1bacd9311e87a89 (patch) | |
tree | 6a4ec8bc83be3bdd18421b3f0c221b7a6091cf9e /activities | |
parent | 8fd5a9292c7d3aac352d3c0e96288bff8a79cb47 (diff) | |
download | takahe-dd4328ae523bb375dd871e85d1bacd9311e87a89.tar.gz takahe-dd4328ae523bb375dd871e85d1bacd9311e87a89.tar.bz2 takahe-dd4328ae523bb375dd871e85d1bacd9311e87a89.zip |
Add JSON-LD signatures and tests for sig stuff
Diffstat (limited to 'activities')
-rw-r--r-- | activities/models/fan_out.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/activities/models/fan_out.py b/activities/models/fan_out.py index 79b7409..96e8df7 100644 --- a/activities/models/fan_out.py +++ b/activities/models/fan_out.py @@ -32,7 +32,8 @@ class FanOutStates(StateGraph): await HttpSignature.signed_request( uri=fan_out.identity.inbox_uri, body=canonicalise(post.to_create_ap()), - identity=post.author, + private_key=post.author.public_key, + key_id=post.author.public_key_id, ) return cls.sent |