summaryrefslogtreecommitdiffstats
path: root/takahe
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-17 20:04:01 -0700
committerAndrew Godwin2022-11-17 20:04:01 -0700
commitb3072c81ba73a16381366960841b6c294cc1fa6e (patch)
tree707cf2f966dd030fc2a5e866f50711ab87a40870 /takahe
parentadf2449d373bcd07e2b0ce557beeb1f49d1894e4 (diff)
downloadtakahe-b3072c81ba73a16381366960841b6c294cc1fa6e.tar.gz
takahe-b3072c81ba73a16381366960841b6c294cc1fa6e.tar.bz2
takahe-b3072c81ba73a16381366960841b6c294cc1fa6e.zip
Follows page
Diffstat (limited to 'takahe')
-rw-r--r--takahe/urls.py7
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",