mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
Merge pull request #24458 from nextcloud/backport/24451/stable18
[stable18] external storages: save group ids not display names in configuration
This commit is contained in:
commit
eccdb970e5
1 changed files with 2 additions and 2 deletions
|
|
@ -85,8 +85,8 @@ function addSelect2 ($elements, userListLimit) {
|
|||
var userCount = 0; // users is an object
|
||||
|
||||
// add groups
|
||||
$.each(data.groups, function(i, group) {
|
||||
results.push({name:group+'(group)', displayname:group, type:'group' });
|
||||
$.each(data.groups, function(gid, group) {
|
||||
results.push({name:gid+'(group)', displayname:group, type:'group' });
|
||||
});
|
||||
// add users
|
||||
$.each(data.users, function(id, user) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue