diff options
author | Thibaut <17176051+ThibautPlg@users.noreply.github.com> | 2023-09-14 15:04:48 +0200 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2024-08-06 19:30:59 +0200 |
commit | 825347f26272876104134782aa18ae7a1303eead (patch) | |
tree | 5a7d7031ee002b98a3f99704a29305c0d5e9a6f8 /core/Command/Group | |
parent | 8a5bc4778b524d3a67b1957c50d0d17747ba4c9c (diff) | |
download | nextcloud-server-825347f26272876104134782aa18ae7a1303eead.tar.gz nextcloud-server-825347f26272876104134782aa18ae7a1303eead.zip |
feat(occ)!: Adding the `displayName` to the output of the `occ group:list --info` command
Signed-off-by: ThibautPlg <17176051+ThibautPlg@users.noreply.github.com>
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Diffstat (limited to 'core/Command/Group')
-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), ]; |