Allow API keys in ReverseProxyAuthMiddleware (closes #1216)

This commit is contained in:
Bernd Bestel
2020-12-24 10:00:51 +01:00
parent 2e3c237648
commit 4766c81580
3 changed files with 10 additions and 5 deletions

View File

@@ -16,7 +16,6 @@ class LdapAuthMiddleware extends AuthMiddleware
// First try to authenticate by API key
$auth = new ApiKeyAuthMiddleware($this->AppContainer, $this->ResponseFactory);
$user = $auth->authenticate($request);
if ($user !== null)
{
return $user;