From 34b24a0dcb044cb755e201ad1a83253d0690e78e Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Sun, 13 Nov 2022 16:14:38 -0700 Subject: More UI! --- takahe/urls.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'takahe/urls.py') 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()), -- cgit v1.2.3