From 825347f26272876104134782aa18ae7a1303eead Mon Sep 17 00:00:00 2001 From: Thibaut <17176051+ThibautPlg@users.noreply.github.com> Date: Thu, 14 Sep 2023 15:04:48 +0200 Subject: [PATCH] feat(occ)!: Adding the `displayName` to the output of the `occ group:list --info` command Signed-off-by: ThibautPlg <17176051+ThibautPlg@users.noreply.github.com> Signed-off-by: Andy Scherzinger --- core/Command/Group/ListCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/Command/Group/ListCommand.php b/core/Command/Group/ListCommand.php index f4c531bbc8980..13161ec0eaaf2 100644 --- a/core/Command/Group/ListCommand.php +++ b/core/Command/Group/ListCommand.php @@ -73,6 +73,7 @@ private function formatGroups(array $groups, bool $addInfo = false): \Generator foreach ($groups as $group) { if ($addInfo) { $value = [ + 'displayName' => $group->getDisplayName(), 'backends' => $group->getBackendNames(), 'users' => $this->usersForGroup($group), ];