feat: soft-delete for teamer accounts

addresses #869dv9br3
This commit is contained in:
Björn Fromme
2026-08-11 12:26:13 +02:00
parent 388ecf9603
commit d654ce77fb
45 changed files with 1151 additions and 7 deletions
@@ -44,6 +44,12 @@ class ImpersonationVoter extends Voter
return false;
}
// a deleted account is excluded from every process, so impersonating it must not
// become a way back into the teamer area
if (true === $targetUser->isDeleted()) {
return false;
}
// Admin is the only role allowed to impersonate
if (false === $this->security->isGranted('ROLE_ADMIN')) {
return false;