From 6a787dd4bf24be85b43a19abfd0784eafc149ac1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 14 Jan 2020 22:46:19 +0100 Subject: [PATCH 1/2] point to new personRepository in controller --- Controller/SingleTaskController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/SingleTaskController.php b/Controller/SingleTaskController.php index 68f847268..fd5e26e33 100644 --- a/Controller/SingleTaskController.php +++ b/Controller/SingleTaskController.php @@ -20,7 +20,7 @@ use Chill\MainBundle\Pagination\PaginatorFactory; use Chill\TaskBundle\Repository\SingleTaskRepository; use Chill\MainBundle\Entity\User; use Chill\PersonBundle\Security\Authorization\PersonVoter; -use Chill\PersonBundle\Entity\PersonRepository; +use Chill\PersonBundle\Repository\PersonRepository; use Chill\MainBundle\Entity\UserRepository; use Chill\TaskBundle\Event\TaskEvent; use Symfony\Component\EventDispatcher\EventDispatcherInterface; From 574f7e77f2fd8ce7ab3547220a4db0f8cc19790b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 14 Jan 2020 22:47:42 +0100 Subject: [PATCH 2/2] update changelog for last commit --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1cb9de80..2602bbb7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,3 +45,7 @@ Version 1.5.10 - load webpack config using a `configure` function ; +Branch master +============= + +- [bugfix] point to new person repository in TaskController;