summaryrefslogtreecommitdiff
path: root/app/Api/Middleware/AuthenticationMiddleware.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-12-17 13:39:03 -0500
committerFrederic Guillot <fred@kanboard.net>2016-12-17 13:39:03 -0500
commitddeb89e2c6622f197d1b7738042182b34d5054ed (patch)
treee7c473b9753d8ce309ec73f40c9eef62b2b9cc81 /app/Api/Middleware/AuthenticationMiddleware.php
parentaafa1de4d56b0791c4d367aa530587082c833faf (diff)
Add cache decorator for UserModel
Diffstat (limited to 'app/Api/Middleware/AuthenticationMiddleware.php')
-rw-r--r--app/Api/Middleware/AuthenticationMiddleware.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Api/Middleware/AuthenticationMiddleware.php b/app/Api/Middleware/AuthenticationMiddleware.php
index c4fa874a..174dc467 100644
--- a/app/Api/Middleware/AuthenticationMiddleware.php
+++ b/app/Api/Middleware/AuthenticationMiddleware.php
@@ -31,7 +31,7 @@ class AuthenticationMiddleware extends Base implements MiddlewareInterface
$this->sessionStorage->scope = 'API';
if ($this->isUserAuthenticated($username, $password)) {
- $this->userSession->initialize($this->userModel->getByUsername($username));
+ $this->userSession->initialize($this->userCacheDecorator->getByUsername($username));
} elseif (! $this->isAppAuthenticated($username, $password)) {
$this->logger->error('API authentication failure for '.$username);
throw new AuthenticationFailureException('Wrong credentials');