From 1130c23b1e6bb1e4db71c41f5e4add903267830e Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 15 Dec 2022 12:26:17 -0700 Subject: Stator stats overhaul Removes the error table, adds a stats table and admin page. Fixes #166 --- takahe/urls.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'takahe') diff --git a/takahe/urls.py b/takahe/urls.py index dfdf4da..6bb239b 100644 --- a/takahe/urls.py +++ b/takahe/urls.py @@ -127,6 +127,11 @@ urlpatterns = [ "admin/hashtags//delete/", admin.HashtagDelete.as_view(), ), + path( + "admin/stator/", + admin.Stator.as_view(), + name="admin_stator", + ), # Identity views path("@/", identity.ViewIdentity.as_view()), path("@/inbox/", activitypub.Inbox.as_view()), -- cgit v1.2.3