summaryrefslogtreecommitdiffstats
path: root/takahe
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-16 21:12:28 -0700
committerAndrew Godwin2022-11-16 21:12:28 -0700
commit1b52acdb56346d939eb2e26ff449697b52fa7142 (patch)
tree222e5a3de47db230c392f18ab983abe69eb94c5d /takahe
parent44af0d4c59eed1c3715e9044e75c159cfddf54cc (diff)
downloadtakahe-1b52acdb56346d939eb2e26ff449697b52fa7142.tar.gz
takahe-1b52acdb56346d939eb2e26ff449697b52fa7142.tar.bz2
takahe-1b52acdb56346d939eb2e26ff449697b52fa7142.zip
Domains management pages
Diffstat (limited to 'takahe')
-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()),