Fixed role permission removal bug
This commit is contained in:
parent
75981c2412
commit
f99c8ff99a
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ class PermissionService
|
|||
$roleIds = array_map(function($role) {
|
||||
return $role->id;
|
||||
}, $roles);
|
||||
$this->jointPermission->newQuery()->whereIn('id', $roleIds)->delete();
|
||||
$this->jointPermission->newQuery()->whereIn('role_id', $roleIds)->delete();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue