diff options
author | Andrew Godwin | 2022-11-26 11:54:14 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-26 11:54:14 -0700 |
commit | db88c733b4ea910cd37d97453d49b7b24f767dda (patch) | |
tree | ef28379e7726ee644c6c512c0dcafa0b28baa8e4 /takahe | |
parent | f20296bc1bdf18d4ebc711ab5c2bb957d7fd6e93 (diff) | |
download | takahe-db88c733b4ea910cd37d97453d49b7b24f767dda.tar.gz takahe-db88c733b4ea910cd37d97453d49b7b24f767dda.tar.bz2 takahe-db88c733b4ea910cd37d97453d49b7b24f767dda.zip |
The glorious return of the in-view runner
Diffstat (limited to 'takahe')
-rw-r--r-- | takahe/urls.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/takahe/urls.py b/takahe/urls.py index b94f205..98e1050 100644 --- a/takahe/urls.py +++ b/takahe/urls.py @@ -5,6 +5,7 @@ from django.views.static import serve from activities.views import posts, search, timelines from core import views as core +from stator import views as stator from users.views import activitypub, admin, auth, follows, identity, settings urlpatterns = [ @@ -121,6 +122,8 @@ urlpatterns = [ path(".well-known/nodeinfo", activitypub.NodeInfo.as_view()), path("nodeinfo/2.0/", activitypub.NodeInfo2.as_view()), path("actor/", activitypub.SystemActorView.as_view()), + # Stator + path(".stator/", stator.RequestRunner.as_view()), # Django admin path("djadmin/", djadmin.site.urls), # Media files |