From: Jérôme Benoit Date: Thu, 28 Jun 2018 08:42:59 +0000 (+0200) Subject: Fix the localisations resssource. X-Git-Url: https://git.piment-noir.org/?p=Project_proches_de_moi-server.git;a=commitdiff_plain;h=1de9ba73a6b77b98e94f797623b80b9d993cf01e Fix the localisations resssource. Signed-off-by: Jérôme Benoit --- diff --git a/src/Controller/PersonController.php b/src/Controller/PersonController.php index b452c63..f2e73c1 100644 --- a/src/Controller/PersonController.php +++ b/src/Controller/PersonController.php @@ -85,16 +85,16 @@ class PersonController extends Controller /** * @Rest\Get("/api/person/{id}/localisations") */ - public function getLocalisationActions(Request $request) + public function getLocalisationsAction(Request $request) { $em = $this->getDoctrine()->getManager(); - $localisations = $em->getRepository('App:Localisation')->findBy(['person_id' => $request->get('id')]); + $localisations = $em->getRepository('App:Localisation')->findBy(['person' => $request->get('id')]); if (empty($localisations)) { - return View::create(['message' => 'Person localisation not found'], Response::HTTP_NOT_FOUND); + return View::create(['message' => 'Person localisations not found'], Response::HTTP_NOT_FOUND); } - $view = View::create($localisation); + $view = View::create($localisations); $view->setFormat('json'); $viewHandler = $this->get('fos_rest.view_handler');