diff options
author | Andy Scherzinger <info@andy-scherzinger.de> | 2024-08-06 20:02:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-06 20:02:47 +0200 |
commit | 3c4ee711c1cfc95f92e1448afcd0219a7e6b3bbd (patch) | |
tree | 5a7d7031ee002b98a3f99704a29305c0d5e9a6f8 | |
parent | 8a5bc4778b524d3a67b1957c50d0d17747ba4c9c (diff) | |
parent | 825347f26272876104134782aa18ae7a1303eead (diff) | |
download | nextcloud-server-3c4ee711c1cfc95f92e1448afcd0219a7e6b3bbd.tar.gz nextcloud-server-3c4ee711c1cfc95f92e1448afcd0219a7e6b3bbd.zip |
Merge pull request #40427 from ThibautPlg/master
feat: Adding the displayname to the output of occ group:list --info
-rw-r--r-- | core/Command/Group/ListCommand.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/Command/Group/ListCommand.php b/core/Command/Group/ListCommand.php index f4c531bbc89..13161ec0eaa 100644 --- a/core/Command/Group/ListCommand.php +++ b/core/Command/Group/ListCommand.php @@ -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), ]; |