parent
0a0fdd7f3e
commit
fd674d10e3
2 changed files with 11 additions and 1 deletions
|
@ -197,7 +197,7 @@ class UserController extends Controller
|
||||||
$this->checkPermissionOrCurrentUser('users-manage', $id);
|
$this->checkPermissionOrCurrentUser('users-manage', $id);
|
||||||
|
|
||||||
$user = $this->userRepo->getById($id);
|
$user = $this->userRepo->getById($id);
|
||||||
$newOwnerId = $request->get('new_owner_id', null);
|
$newOwnerId = intval($request->get('new_owner_id')) ?: null;
|
||||||
|
|
||||||
$this->userRepo->destroy($user, $newOwnerId);
|
$this->userRepo->destroy($user, $newOwnerId);
|
||||||
|
|
||||||
|
|
|
@ -162,6 +162,16 @@ class UserManagementTest extends TestCase
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function test_delete_with_empty_owner_migration_id_works()
|
||||||
|
{
|
||||||
|
$user = $this->users->editor();
|
||||||
|
|
||||||
|
$resp = $this->asAdmin()->delete("settings/users/{$user->id}", ['new_owner_id' => '']);
|
||||||
|
$resp->assertRedirect('/settings/users');
|
||||||
|
$this->assertActivityExists(ActivityType::USER_DELETE);
|
||||||
|
$this->assertSessionHas('success');
|
||||||
|
}
|
||||||
|
|
||||||
public function test_delete_removes_user_preferences()
|
public function test_delete_removes_user_preferences()
|
||||||
{
|
{
|
||||||
$editor = $this->users->editor();
|
$editor = $this->users->editor();
|
||||||
|
|
Loading…
Reference in a new issue