diff options
author | Andrew Godwin | 2022-12-10 13:24:49 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-10 13:24:49 -0700 |
commit | 602e5a378057f3cd5ca355fd3ed2a17fcc147c72 (patch) | |
tree | eaa950ac15e45a4a900ce7fa0fed400fadf50a17 /users/views | |
parent | fd5250059118a3f6932b4d39a085164b10577706 (diff) | |
download | takahe-602e5a378057f3cd5ca355fd3ed2a17fcc147c72.tar.gz takahe-602e5a378057f3cd5ca355fd3ed2a17fcc147c72.tar.bz2 takahe-602e5a378057f3cd5ca355fd3ed2a17fcc147c72.zip |
Add system actor and shared inbox
Diffstat (limited to 'users/views')
-rw-r--r-- | users/views/activitypub.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/views/activitypub.py b/users/views/activitypub.py index 93a6eae..b44edfb 100644 --- a/users/views/activitypub.py +++ b/users/views/activitypub.py @@ -138,7 +138,7 @@ class Inbox(View): AP Inbox endpoint """ - def post(self, request, handle): + def post(self, request, handle=None): # Load the LD document = canonicalise(json.loads(request.body), include_security=True) # Find the Identity by the actor on the incoming item |