feature/cierres #30

Merged
aldarien merged 460 commits from feature/cierres into develop 2025-09-11 15:16:17 -03:00
167 changed files with 598 additions and 6353 deletions
Showing only changes of commit 44540d0dc3 - Show all commits

View File

@ -102,6 +102,11 @@ class API
if (isset($data['validator'])) {
$method = [$data['validator'], 'validateToken'];
if ($method($request, $data)) {
$this->logger->info("Validated external key", [
'path' => $request->getUri()->getPath(),
'headers' => $request->getHeaders(),
'body' => $request->getBody()->getContents()
]);
return true;
}
}