nouveau-theatre-de-besancon/site/config/routes/mapado-api.php

14 lines
271 B
PHP
Raw Normal View History

<?php
return [
2024-07-29 08:57:35 +02:00
'pattern' => '/mapado-api.json',
'method' => 'POST',
'action' => function () {
$jsonRequest = file_get_contents("php://input");
$request = json_decode($jsonRequest, true);
2024-07-29 12:29:00 +02:00
$response = fetchMapado($request);
2024-07-29 12:29:00 +02:00
return $response;
}
];