fix logic and tests, update docker CI file

This commit is contained in:
root
2026-03-09 15:58:44 -04:00
parent 1cb3573d4b
commit 79e44fe037
188 changed files with 1776 additions and 524 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ class UserManagementService
try {
DB::transaction(function () use ($userId, $user) {
UserRole::query()->where('user_id', $userId)->delete();
UserRole::query()->where('user_id', $userId)->forceDelete();
$user->delete();
});
} catch (\Throwable $e) {