feature/cierres #31

Merged
aldarien merged 462 commits from feature/cierres into develop 2025-09-11 17:05:18 -03:00
234 changed files with 817 additions and 10335 deletions
Showing only changes of commit 7f37dc76e3 - Show all commits

View File

@ -46,6 +46,9 @@ class API
if ($this->validate($request, $key)) {
return $handler->handle($request);
}
$this->logger->warning("Forbidden.", [
'headers' => $request->getHeaders()
]);
return $this->responseFactory->createResponse(403);
}
protected function validate(ServerRequestInterface $request, $incoming_key): bool