summaryrefslogtreecommitdiffstats
path: root/takahe/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'takahe/urls.py')
-rw-r--r--takahe/urls.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/takahe/urls.py b/takahe/urls.py
index bdb5946..0643440 100644
--- a/takahe/urls.py
+++ b/takahe/urls.py
@@ -17,6 +17,13 @@ urlpatterns = [
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()),
+ path("settings/system/domains/", settings_system.DomainsPage.as_view()),
+ path("settings/system/domains/create/", settings_system.DomainCreatePage.as_view()),
+ path("settings/system/domains/<domain>/", settings_system.DomainEditPage.as_view()),
+ path(
+ "settings/system/domains/<domain>/delete/",
+ settings_system.DomainDeletePage.as_view(),
+ ),
# Identity views
path("@<handle>/", identity.ViewIdentity.as_view()),
path("@<handle>/actor/", activitypub.Actor.as_view()),