From 1121532204733aa7bf00eb10cd4b8c93cfc3784e Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Sat, 18 Feb 2023 09:43:25 +0100 Subject: [PATCH] add route /api/statistics/ --- class.paperless.php | 1 + 1 file changed, 1 insertion(+) diff --git a/class.paperless.php b/class.paperless.php index 1a2fd66..bccc4e7 100644 --- a/class.paperless.php +++ b/class.paperless.php @@ -1337,6 +1337,7 @@ class SeedDMS_ExtPaperless_RestAPI { /* {{{ */ $app->get('/api/search/autocomplete/', \SeedDMS_ExtPaperless_RestAPI_Controller::class.':autocomplete'); $app->get('/api/ui_settings/', \SeedDMS_ExtPaperless_RestAPI_Controller::class.':ui_settings'); $app->get('/api/statstotal/', \SeedDMS_ExtPaperless_RestAPI_Controller::class.':statstotal'); + $app->get('/api/statistics/', \SeedDMS_ExtPaperless_RestAPI_Controller::class.':statstotal'); return null; } /* }}} */