2024-07-26 08:46:47 +02:00
|
|
|
<?php
|
|
|
|
|
return [
|
2024-07-29 08:57:35 +02:00
|
|
|
'pattern' => '/mapado-api.json',
|
2024-07-26 08:46:47 +02:00
|
|
|
'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-26 08:46:47 +02:00
|
|
|
|
2024-07-29 12:29:00 +02:00
|
|
|
return $response;
|
2024-07-26 08:46:47 +02:00
|
|
|
}
|
|
|
|
|
];
|