fix: dont cache basic auth response (#4644)

This commit is contained in:
Dag 2025-08-04 01:32:36 +02:00 committed by GitHub
parent 69eda522c8
commit 47c9983e16
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,11 +23,11 @@ final class RssBridge
$handler = $this->container[$actionName];
$middlewares = [
new BasicAuthMiddleware(),
new CacheMiddleware($this->container['cache']),
new ExceptionMiddleware($this->container['logger']),
new SecurityMiddleware(),
new MaintenanceMiddleware(),
new BasicAuthMiddleware(),
new TokenAuthenticationMiddleware(),
];
$action = function ($req) use ($handler) {