diff options
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 2517364..bebd63a 100644 --- a/takahe/urls.py +++ b/takahe/urls.py @@ -9,6 +9,8 @@ from users.views import activitypub, auth, identity urlpatterns = [ path("", core.homepage), # Activity views + path("notifications/", timelines.Notifications.as_view()), + path("local/", timelines.Local.as_view()), path("federated/", timelines.Federated.as_view()), # Authentication path("auth/login/", auth.Login.as_view()), |