From b3072c81ba73a16381366960841b6c294cc1fa6e Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 17 Nov 2022 20:04:01 -0700 Subject: Follows page --- takahe/urls.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'takahe') diff --git a/takahe/urls.py b/takahe/urls.py index 0ea49d0..044599a 100644 --- a/takahe/urls.py +++ b/takahe/urls.py @@ -6,7 +6,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, identity, settings +from users.views import activitypub, admin, auth, follows, identity, settings urlpatterns = [ path("", core.homepage), @@ -31,6 +31,11 @@ urlpatterns = [ settings.ProfilePage.as_view(), name="settings_profile", ), + path( + "settings/follows/", + follows.FollowsPage.as_view(), + name="settings_follows", + ), path( "settings/interface/", settings.InterfacePage.as_view(), -- cgit v1.2.3