From 985fb680f9bf2407926163c3755521d9f3ddfc56 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] Adding the displayname to the output of the occ group:list --info command Signed-off-by: ThibautPlg <17176051+ThibautPlg@users.noreply.github.com> --- 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 22ce4cb0317e1..c1504ef5a9c84 100644 --- a/core/Command/Group/ListCommand.php +++ b/core/Command/Group/ListCommand.php @@ -97,6 +97,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), ];