mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-04-27 17:16:42 -04:00
UserController: Use "group" instead of "group_name" for the membership quicksearch
refs #10370
This commit is contained in:
parent
72f3ba1161
commit
7efefc1975
1 changed files with 2 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ class UserController extends AuthBackendController
|
|||
$this->setupFilterControl(
|
||||
$memberships,
|
||||
array('group_name' => t('User Group')),
|
||||
array('group_name'),
|
||||
array('group'),
|
||||
array('user')
|
||||
);
|
||||
$this->setupPaginationControl($memberships);
|
||||
|
|
@ -260,6 +260,7 @@ class UserController extends AuthBackendController
|
|||
$alreadySeen[$groupName] = null;
|
||||
$groups[] = (object) array(
|
||||
'group_name' => $groupName,
|
||||
'group' => $groupName,
|
||||
'backend' => $backend
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue