diff options
author | Andrew Godwin | 2022-11-20 18:29:19 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-20 18:29:19 -0700 |
commit | 5ddce16213a8e7b4e9d052a14ed8d7e37ac5f068 (patch) | |
tree | f6bfb8d8e0fe6e00a30125ba4b6076426c56bcf2 /takahe | |
parent | bed5c7ffaa184fd6146df17279fc2b96f9d02944 (diff) | |
download | takahe-5ddce16213a8e7b4e9d052a14ed8d7e37ac5f068.tar.gz takahe-5ddce16213a8e7b4e9d052a14ed8d7e37ac5f068.tar.bz2 takahe-5ddce16213a8e7b4e9d052a14ed8d7e37ac5f068.zip |
Add a system actor to sign outgoing S2S GETs
Diffstat (limited to 'takahe')
-rw-r--r-- | takahe/urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/takahe/urls.py b/takahe/urls.py index abb8b2c..614ec3b 100644 --- a/takahe/urls.py +++ b/takahe/urls.py @@ -104,11 +104,12 @@ urlpatterns = [ path("@<handle>/activate/", identity.ActivateIdentity.as_view()), path("identity/select/", identity.SelectIdentity.as_view()), path("identity/create/", identity.CreateIdentity.as_view()), - # Well-known endpoints + # Well-known endpoints and system actor path(".well-known/webfinger", activitypub.Webfinger.as_view()), path(".well-known/host-meta", activitypub.HostMeta.as_view()), path(".well-known/nodeinfo", activitypub.NodeInfo.as_view()), path("nodeinfo/2.0/", activitypub.NodeInfo2.as_view()), + path("actor/", activitypub.SystemActorView.as_view()), # Django admin path("djadmin/", djadmin.site.urls), # Media files |