summaryrefslogtreecommitdiffstats
path: root/takahe/urls.py
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-13 16:14:38 -0700
committerAndrew Godwin2022-11-13 16:15:14 -0700
commit34b24a0dcb044cb755e201ad1a83253d0690e78e (patch)
tree51e6842d9e1392fafcd617cf4de0fa7e28397c87 /takahe/urls.py
parent5a8b6bb3d022a532562ad5fa6d629cfc48c51b46 (diff)
downloadtakahe-34b24a0dcb044cb755e201ad1a83253d0690e78e.tar.gz
takahe-34b24a0dcb044cb755e201ad1a83253d0690e78e.tar.bz2
takahe-34b24a0dcb044cb755e201ad1a83253d0690e78e.zip
More UI!
Diffstat (limited to 'takahe/urls.py')
-rw-r--r--takahe/urls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/takahe/urls.py b/takahe/urls.py
index 672f7ce..2517364 100644
--- a/takahe/urls.py
+++ b/takahe/urls.py
@@ -1,12 +1,15 @@
from django.contrib import admin
from django.urls import path
+from activities.views import timelines
from core import views as core
from stator import views as stator
from users.views import activitypub, auth, identity
urlpatterns = [
path("", core.homepage),
+ # Activity views
+ path("federated/", timelines.Federated.as_view()),
# Authentication
path("auth/login/", auth.Login.as_view()),
path("auth/logout/", auth.Logout.as_view()),