1
0
espelhamento de https://github.com/nextcloud/server.git sincronizado 2024-07-31 08:15:55 +02:00

Fix users loading on group click and group creation on select

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Esse commit está contido em:
John Molakvoæ (skjnldsv) 2018-03-02 16:35:17 +01:00
commit ddcd37121f
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados
ID da chave GPG: FB5ACEED51955BF8
2 arquivos alterados com 5 adições e 3 exclusões

Ver arquivo

@ -18,6 +18,9 @@ GroupList = {
filterGroups: false,
addGroup: function (gid, displayName, usercount) {
if (_.isUndefined(displayName)) {
displayName = gid;
}
var $li = $userGroupList.find('.isgroup:last-child').clone();
$li
.data('gid', gid)
@ -142,7 +145,7 @@ GroupList = {
function (result) {
if (result.groupname) {
var addedGroup = result.groupname;
UserList.availableGroups[result.id] = {displayName: result.groupName};
UserList.availableGroups[groupid] = {displayName: result.groupname};
GroupList.addGroup(groupid, result.groupname);
}
GroupList.toggleAddGroup();

Ver arquivo

@ -66,7 +66,7 @@ var UserList = {
* }
*/
add: function (user) {
if (this.currentGid && this.currentGid !== '_everyone' && this.currentGid !== '_disabledUsers' && _.indexOf(user.groups, this.currentGid) < 0) {
if (this.currentGid && this.currentGid !== '_everyone' && this.currentGid !== '_disabledUsers' && Object.keys(user.groups).indexOf(this.currentGid) < 0) {
return false;
}
@ -454,7 +454,6 @@ var UserList = {
if (!OC.isUserAdmin() && checked.length === 1 && checked[0] === group) {
return false;
}
if (add && OC.isUserAdmin() && _.isUndefined(UserList.availableGroups[group])) {
GroupList.createGroup(group);
if (_.isUndefined(UserList.availableGroups[group])) {