From e175858235782aaefd4a7550e86c46a3940edd87 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Fri, 24 Oct 2025 12:55:35 +0200 Subject: [PATCH] add groups and categories to 'statstotal' --- restapi/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/restapi/index.php b/restapi/index.php index c09d199a6..a2d255285 100644 --- a/restapi/index.php +++ b/restapi/index.php @@ -3002,7 +3002,7 @@ final class SeedDMS_RestapiController { /* {{{ */ return $check; $data = []; - foreach (array('docstotal', 'folderstotal', 'userstotal') as $type) { + foreach (array('docstotal', 'folderstotal', 'userstotal', 'groupstotal', 'categoriestotal') as $type) { $total = $dms->getStatisticalData($type); $data[$type] = $total; }