From 44af0d4c59eed1c3715e9044e75c159cfddf54cc Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Wed, 16 Nov 2022 17:23:46 -0700 Subject: Add start of a settings (config) system --- takahe/urls.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'takahe') diff --git a/takahe/urls.py b/takahe/urls.py index 723516a..bdb5946 100644 --- a/takahe/urls.py +++ b/takahe/urls.py @@ -4,7 +4,7 @@ from django.urls import path from activities.views import posts, timelines from core import views as core from stator import views as stator -from users.views import activitypub, auth, identity +from users.views import activitypub, auth, identity, settings_identity, settings_system urlpatterns = [ path("", core.homepage), @@ -13,6 +13,10 @@ urlpatterns = [ path("notifications/", timelines.Notifications.as_view()), path("local/", timelines.Local.as_view()), path("federated/", timelines.Federated.as_view()), + path("settings/", settings_identity.IdentitySettingsRoot.as_view()), + path("settings/interface/", settings_identity.InterfacePage.as_view()), + path("settings/system/", settings_system.SystemSettingsRoot.as_view()), + path("settings/system/basic/", settings_system.BasicPage.as_view()), # Identity views path("@/", identity.ViewIdentity.as_view()), path("@/actor/", activitypub.Actor.as_view()), -- cgit v1.2.3