From 1b85da72df667cabe3a4357df63e9c44786fa82a 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 bea6d08c76f0b..fa5b6f6f1e4dd 100644 --- a/core/Command/Group/ListCommand.php +++ b/core/Command/Group/ListCommand.php @@ -78,6 +78,7 @@ private function formatGroups(array $groups, bool $addInfo = false) { if ($addInfo) { $values = array_map(function (IGroup $group) { return [ + 'displayName' => $group->getDisplayName(), 'backends' => $group->getBackendNames(), 'users' => $this->usersForGroup($group), ];