diff options
author | Andrew Godwin | 2022-11-17 20:04:01 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-17 20:04:01 -0700 |
commit | b3072c81ba73a16381366960841b6c294cc1fa6e (patch) | |
tree | 707cf2f966dd030fc2a5e866f50711ab87a40870 /takahe | |
parent | adf2449d373bcd07e2b0ce557beeb1f49d1894e4 (diff) | |
download | takahe-b3072c81ba73a16381366960841b6c294cc1fa6e.tar.gz takahe-b3072c81ba73a16381366960841b6c294cc1fa6e.tar.bz2 takahe-b3072c81ba73a16381366960841b6c294cc1fa6e.zip |
Follows page
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", |