aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Scherzinger <info@andy-scherzinger.de>2024-08-06 20:02:47 +0200
committerGitHub <noreply@github.com>2024-08-06 20:02:47 +0200
commit3c4ee711c1cfc95f92e1448afcd0219a7e6b3bbd (patch)
tree5a7d7031ee002b98a3f99704a29305c0d5e9a6f8
parent8a5bc4778b524d3a67b1957c50d0d17747ba4c9c (diff)
parent825347f26272876104134782aa18ae7a1303eead (diff)
downloadnextcloud-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.php1
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),
];