summaryrefslogtreecommitdiffstats
path: root/takahe
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-25 17:52:43 -0700
committerAndrew Godwin2022-11-25 17:52:57 -0700
commit8ca36fd95800907a1c7f3c9efedd0085b8f0ec9b (patch)
treefaf67cf203e54f5907839531112c3d5739fa5082 /takahe
parent2a8cb8f8617d618c8d2777cccd823b28a3edc812 (diff)
downloadtakahe-8ca36fd95800907a1c7f3c9efedd0085b8f0ec9b.tar.gz
takahe-8ca36fd95800907a1c7f3c9efedd0085b8f0ec9b.tar.bz2
takahe-8ca36fd95800907a1c7f3c9efedd0085b8f0ec9b.zip
Add federation admin page
Diffstat (limited to 'takahe')
-rw-r--r--takahe/urls.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/takahe/urls.py b/takahe/urls.py
index ddffa68..b94f205 100644
--- a/takahe/urls.py
+++ b/takahe/urls.py
@@ -69,6 +69,16 @@ urlpatterns = [
admin.DomainDelete.as_view(),
),
path(
+ "admin/federation/",
+ admin.FederationRoot.as_view(),
+ name="admin_federation",
+ ),
+ path(
+ "admin/federation/<domain>/",
+ admin.FederationEdit.as_view(),
+ name="admin_federation_edit",
+ ),
+ path(
"admin/users/",
admin.Users.as_view(),
name="admin_users",