summaryrefslogtreecommitdiff
path: root/app/Auth
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/Auth
parentaafa1de4d56b0791c4d367aa530587082c833faf (diff)
Add cache decorator for UserModel
Diffstat (limited to 'app/Auth')
-rw-r--r--app/Auth/ReverseProxyAuth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Auth/ReverseProxyAuth.php b/app/Auth/ReverseProxyAuth.php
index 02afc302..bf71e71e 100644
--- a/app/Auth/ReverseProxyAuth.php
+++ b/app/Auth/ReverseProxyAuth.php
@@ -45,7 +45,7 @@ class ReverseProxyAuth extends Base implements PreAuthenticationProviderInterfac
$username = $this->request->getRemoteUser();
if (! empty($username)) {
- $userProfile = $this->userModel->getByUsername($username);
+ $userProfile = $this->userCacheDecorator->getByUsername($username);
$this->userInfo = new ReverseProxyUserProvider($username, $userProfile ?: array());
return true;
}