Set proper HTTP status when redirecting to /login

This commit is contained in:
Bernd Bestel
2022-04-08 17:06:51 +02:00
parent 150cfba455
commit 893cfe13cd

View File

@@ -63,7 +63,7 @@ abstract class AuthMiddleware extends BaseMiddleware
}
else
{
return $response->withHeader('Location', $this->AppContainer->get('UrlManager')->ConstructUrl('/login'));
return $response->withStatus(302)->withHeader('Location', $this->AppContainer->get('UrlManager')->ConstructUrl('/login'));
}
}
else