X-Git-Url: https://git.piment-noir.org/?p=Project_proches_de_moi-server.git;a=blobdiff_plain;f=src%2FController%2FPersonController.php;h=f2e73c132454b5e4d3bf98fc763ab7f121b7fe0f;hp=b452c6360093b108b2f42b373311d7bf5cd42381;hb=1de9ba73a6b77b98e94f797623b80b9d993cf01e;hpb=4c4feb3e3193703f6cfa44ca711092a8acb38329 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');