nouveau-theatre-de-besancon/site/config/routes/mapado-api.php
2024-07-29 12:29:00 +02:00

13 lines
271 B
PHP

<?php
return [
'pattern' => '/mapado-api.json',
'method' => 'POST',
'action' => function () {
$jsonRequest = file_get_contents("php://input");
$request = json_decode($jsonRequest, true);
$response = fetchMapado($request);
return $response;
}
];