Merge pull request #40427 from ThibautPlg/master

feat: Adding the displayname to the output of occ group:list --info
This commit is contained in:
Andy Scherzinger 2024-08-06 20:02:47 +02:00 committed by GitHub
commit 3c4ee711c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -73,6 +73,7 @@ class ListCommand extends Base {
foreach ($groups as $group) {
if ($addInfo) {
$value = [
'displayName' => $group->getDisplayName(),
'backends' => $group->getBackendNames(),
'users' => $this->usersForGroup($group),
];