]> source.dussan.org Git - nextcloud-server.git/commitdiff
feat(occ)!: Adding the `displayName` to the output of the `occ group:list --info... 40427/head
authorThibaut <17176051+ThibautPlg@users.noreply.github.com>
Thu, 14 Sep 2023 13:04:48 +0000 (15:04 +0200)
committerAndy Scherzinger <info@andy-scherzinger.de>
Tue, 6 Aug 2024 17:30:59 +0000 (19:30 +0200)
Signed-off-by: ThibautPlg <17176051+ThibautPlg@users.noreply.github.com>
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
core/Command/Group/ListCommand.php

index f4c531bbc898010b2a11562aa3af133ed70b9bee..13161ec0eaaf20c49d030062abac2c0f68cfcd04 100644 (file)
@@ -73,6 +73,7 @@ class ListCommand extends Base {
                foreach ($groups as $group) {
                        if ($addInfo) {
                                $value = [
+                                       'displayName' => $group->getDisplayName(),
                                        'backends' => $group->getBackendNames(),
                                        'users' => $this->usersForGroup($group),
                                ];