mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 18:21:40 -04:00
Show the displayname in the users group list
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
93f5745700
commit
97dbaa26c4
1 changed files with 1 additions and 1 deletions
|
|
@ -174,7 +174,7 @@ class PersonalInfo implements ISettings {
|
|||
private function getGroups(IUser $user) {
|
||||
$groups = array_map(
|
||||
function(IGroup $group) {
|
||||
return $group->getGID();
|
||||
return $group->getDisplayName();
|
||||
},
|
||||
$this->groupManager->getUserGroups($user)
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue