Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/groupfolders.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-06-22 17:18:28 +0300
committerGitHub <noreply@github.com>2022-06-22 17:18:28 +0300
commita05197aa93bbf947cea497e28d0aeffe60b9b8ee (patch)
tree41e55556925daba523b9390e776c9ec2435e6f17
parent6ee9025e147b97f6f0ee77d01301cdd7c8cc2f84 (diff)
parentc46e73671be50686397e49d4ab83881385916def (diff)
Merge pull request #2030 from nextcloud/backport/2024/stable24
[stable24] Speedup querying group info
-rw-r--r--lib/Controller/DelegationController.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Controller/DelegationController.php b/lib/Controller/DelegationController.php
index 00cb6486..1a4c3677 100644
--- a/lib/Controller/DelegationController.php
+++ b/lib/Controller/DelegationController.php
@@ -54,10 +54,6 @@ class DelegationController extends OCSController {
$data[] = [
'id' => $group->getGID(),
'displayname' => $group->getDisplayName(),
- 'usercount' => $group->count(),
- 'disabled' => $group->countDisabled(),
- 'canAdd' => $group->canAddUser(),
- 'canRemove' => $group->canRemoveUser(),
];
}