Merge pull request #18403 from owncloud/do-not-delete-group-if-empty
Do not delete group if empty, hide delete icon for group admin
This commit is contained in:
commit
08161027c4
3 changed files with 2 additions and 14 deletions
|
@ -60,9 +60,6 @@ if( OC_Group::inGroup( $username, $group )) {
|
|||
$error = $l->t("Unable to remove user from group %s", $group);
|
||||
$success = OC_Group::removeFromGroup( $username, $group );
|
||||
$usersInGroup=OC_Group::usersInGroup($group);
|
||||
if(count($usersInGroup) === 0) {
|
||||
OC_Group::deleteGroup($group);
|
||||
}
|
||||
}
|
||||
else{
|
||||
$success = OC_Group::addToGroup( $username, $group );
|
||||
|
|
|
@ -470,17 +470,6 @@ var UserList = {
|
|||
UserList.availableGroups.push(groupName);
|
||||
}
|
||||
|
||||
// in case this was the last user in that group the group has to be removed
|
||||
var groupElement = GroupList.getGroupLI(groupName);
|
||||
var userCount = GroupList.getUserCount(groupElement);
|
||||
if (response.data.action === 'remove' && userCount === 1) {
|
||||
_.without(UserList.availableGroups, groupName);
|
||||
GroupList.remove(groupName);
|
||||
$('.groupsselect option').filterAttr('value', groupName).remove();
|
||||
$('.subadminsselect option').filterAttr('value', groupName).remove();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
if (response.data.message) {
|
||||
OC.Notification.show(response.data.message);
|
||||
|
|
|
@ -43,9 +43,11 @@
|
|||
</a>
|
||||
<span class="utils">
|
||||
<span class="usercount"><?php if($group['usercount'] > 0) { p($group['usercount']); } ?></span>
|
||||
<?php if($_['isAdmin']): ?>
|
||||
<a href="#" class="action delete" original-title="<?php p($l->t('Delete'))?>">
|
||||
<img src="<?php print_unescaped(image_path('core', 'actions/delete.svg')) ?>" class="svg" />
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
</span>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
|
|
Loading…
Reference in a new issue