FIX: Remove cache from login when redirecting

This commit is contained in:
Juan Pablo Vial
2024-03-20 20:55:34 -03:00
parent 2ccbc31ae0
commit d69976d015
2 changed files with 2 additions and 3 deletions

View File

@ -20,7 +20,6 @@ class Authentication
public function __invoke(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
$this->logger->critical(var_export([$this->service->isIn(), $this->isValid($request)],true));
if ($this->service->isIn() or $this->isValid($request)) {
return $handler->handle($request);
}