[Feature] Prevent sending notification to user when bulk reassign

This commit is contained in:
2022-10-06 21:44:23 +02:00
parent 86cfd87d71
commit cf0252b469
5 changed files with 11 additions and 9 deletions

View File

@@ -127,7 +127,7 @@ class ReassignAccompanyingPeriodController extends AbstractController
$period = $this->courseRepository->find($periodId);
if ($period->getUser() === $userFrom) {
$period->setUser($userTo);
$period->setUser($userTo, true);
}
}