use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
-/**
- * @Rest\Prefix("/api")
- */
class PersonController extends FOSRestController
{
/**
* @Rest\Post(
- * path = "/person/inscription",
+ * path = "/api/person/inscription",
* name = "create_person"
* )
* @Rest\View(StatusCode = Response::HTTP_CREATED)
}
/**
- * @Rest\Delete("/person/{id}")
+ * @Rest\Delete("/api/person/{id}")
* @Rest\View(statusCode = Response::HTTP_NO_CONTENT)
*/
public function removePersonAction(Request $request)
$em->remove($person);
$em->flush();
}
+ //TODO: remove localisation and friendship
}
/**
* @Rest\Put(
- * path = "/person/{id}/update",
+ * path = "/api/person/{id}/update",
* name = "update_person"
* )
* @Rest\View(StatusCode = Response::HTTP_CREATED)
}
/**
- * @Rest\Get("/person/{id}/friends/localisation")
+ * @Rest\Get("/api/person/{id}/friends/localisation")
*/
public function getFriendsLocalisationAction(Request $request)
{
}
/**
- * @Rest\Post("/person/{id}/localisation")
+ * @Rest\Post("/api/person/{id}/localisation")
* @Rest\View(StatusCode = Response::HTTP_CREATED)
*/
public function updateLocalisationAction(Request $request)
/**
* @Rest\Get(
- * path = "/person/{id}",
+ * path = "/api/person/{id}",
* name = "show_person",
* requirements = {"id"="\d+"}
* )
/**
* @Rest\Get(
- * path = "/person/{email}",
+ * path = "/api/person/{email}",
* name = "show_person_by_email",
* requirements = {"email"="\s+"}
* )
/**
* @Rest\Get(
- * path = "/person/{id}/friends",
+ * path = "/api/person/{id}/friends",
* name = "show_person_friends",
* requirements = {"id"="\d+"}
* )
/**
* @Rest\Get(
- * path = "/person/{email}/friends",
+ * path = "/api/person/{email}/friends",
* name = "show_person_friends_by_email",
* requirements = {"email"="\s+"}
* )