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), ];