From 69987d2525192018a180faeeb8fccea18232e7ee Mon Sep 17 00:00:00 2001 From: joriot221 <florian.joriot@unicarn.fr> Date: Thu, 28 Apr 2022 16:09:10 +0200 Subject: [PATCH] retirer soft delete groupeTypeFormation --- module/Application/src/Controller/TypeFormationController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/Application/src/Controller/TypeFormationController.php b/module/Application/src/Controller/TypeFormationController.php index 30dd21aab6..bc5e29031f 100644 --- a/module/Application/src/Controller/TypeFormationController.php +++ b/module/Application/src/Controller/TypeFormationController.php @@ -115,7 +115,7 @@ class TypeFormationController extends AbstractController function supprimerGroupeAction() { $typeformation = $this->getEvent()->getParam('groupeTypeFormation'); - $this->getServiceGroupeTypeFormation()->delete($typeformation, true); + $this->getServiceGroupeTypeFormation()->delete($typeformation); return new MessengerViewModel(); } -- GitLab