summaryrefslogtreecommitdiffstats
path: root/takahe
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-05 17:51:54 -0600
committerAndrew Godwin2022-11-05 17:51:54 -0600
commite44a321ec53bc84b5986ac0371b4122201fa3a5a (patch)
treeb3a5c4b42e59ad912001cf51c39db494b78aa07d /takahe
parent57e33f1215ee28f557f2765ec7864c6741d61e26 (diff)
downloadtakahe-e44a321ec53bc84b5986ac0371b4122201fa3a5a.tar.gz
takahe-e44a321ec53bc84b5986ac0371b4122201fa3a5a.tar.bz2
takahe-e44a321ec53bc84b5986ac0371b4122201fa3a5a.zip
Get Actor fetching and parsing working
Diffstat (limited to 'takahe')
-rw-r--r--takahe/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/takahe/urls.py b/takahe/urls.py
index 422a182..c43e4fa 100644
--- a/takahe/urls.py
+++ b/takahe/urls.py
@@ -12,11 +12,12 @@ urlpatterns = [
# Identity views
path("@<handle>/", identity.ViewIdentity.as_view()),
path("@<handle>/actor/", identity.Actor.as_view()),
+ path("@<handle>/actor/inbox/", identity.Inbox.as_view()),
# Identity selection
path("identity/select/", identity.SelectIdentity.as_view()),
path("identity/create/", identity.CreateIdentity.as_view()),
# Well-known endpoints
- path(".well-known/webfinger/", identity.Webfinger.as_view()),
+ path(".well-known/webfinger", identity.Webfinger.as_view()),
# Django admin
path("djadmin/", admin.site.urls),
]