diff options
Diffstat (limited to 'takahe')
-rw-r--r-- | takahe/urls.py | 7 |
1 files changed, 6 insertions, 1 deletions
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), @@ -32,6 +32,11 @@ urlpatterns = [ name="settings_profile", ), path( + "settings/follows/", + follows.FollowsPage.as_view(), + name="settings_follows", + ), + path( "settings/interface/", settings.InterfacePage.as_view(), name="settings_interface", |