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 /takahe | |
parent | fd5250059118a3f6932b4d39a085164b10577706 (diff) | |
download | takahe-602e5a378057f3cd5ca355fd3ed2a17fcc147c72.tar.gz takahe-602e5a378057f3cd5ca355fd3ed2a17fcc147c72.tar.bz2 takahe-602e5a378057f3cd5ca355fd3ed2a17fcc147c72.zip |
Add system actor and shared inbox
Diffstat (limited to 'takahe')
-rw-r--r-- | takahe/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/takahe/urls.py b/takahe/urls.py index 98d1cd5..762e091 100644 --- a/takahe/urls.py +++ b/takahe/urls.py @@ -199,6 +199,8 @@ urlpatterns = [ path(".well-known/nodeinfo", activitypub.NodeInfo.as_view()), path("nodeinfo/2.0/", activitypub.NodeInfo2.as_view()), path("actor/", activitypub.SystemActorView.as_view()), + path("actor/inbox/", activitypub.Inbox.as_view()), + path("inbox/", activitypub.Inbox.as_view(), name="shared_inbox"), # Stator path(".stator/", stator.RequestRunner.as_view()), # Django admin |