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