diff options
author | Andrew Godwin | 2022-11-16 21:12:28 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-16 21:12:28 -0700 |
commit | 1b52acdb56346d939eb2e26ff449697b52fa7142 (patch) | |
tree | 222e5a3de47db230c392f18ab983abe69eb94c5d /takahe | |
parent | 44af0d4c59eed1c3715e9044e75c159cfddf54cc (diff) | |
download | takahe-1b52acdb56346d939eb2e26ff449697b52fa7142.tar.gz takahe-1b52acdb56346d939eb2e26ff449697b52fa7142.tar.bz2 takahe-1b52acdb56346d939eb2e26ff449697b52fa7142.zip |
Domains management pages
Diffstat (limited to 'takahe')
-rw-r--r-- | takahe/urls.py | 7 |
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()), |