diff options
author | Andrew Godwin | 2022-11-25 17:52:43 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-25 17:52:57 -0700 |
commit | 8ca36fd95800907a1c7f3c9efedd0085b8f0ec9b (patch) | |
tree | faf67cf203e54f5907839531112c3d5739fa5082 /takahe | |
parent | 2a8cb8f8617d618c8d2777cccd823b28a3edc812 (diff) | |
download | takahe-8ca36fd95800907a1c7f3c9efedd0085b8f0ec9b.tar.gz takahe-8ca36fd95800907a1c7f3c9efedd0085b8f0ec9b.tar.bz2 takahe-8ca36fd95800907a1c7f3c9efedd0085b8f0ec9b.zip |
Add federation admin page
Diffstat (limited to 'takahe')
-rw-r--r-- | takahe/urls.py | 10 |
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", |