Merge pull request #24457 from nextcloud/backport/24451/stable19

[stable19] external storages: save group ids not display names in configuration
This commit is contained in:
Morris Jobke 2020-11-30 17:22:31 +01:00 committed by GitHub
commit 739fdbaeba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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) {