summaryrefslogtreecommitdiff
path: root/app/Api/Middleware/AuthenticationMiddleware.php
diff options
context:
space:
mode:
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 d2910589..22a3558b 100644
--- a/app/Api/Middleware/AuthenticationMiddleware.php
+++ b/app/Api/Middleware/AuthenticationMiddleware.php
@@ -28,7 +28,7 @@ class AuthenticationMiddleware extends Base implements MiddlewareInterface
public function execute($username, $password, $procedureName)
{
$this->dispatcher->dispatch('app.bootstrap');
- $this->sessionStorage->scope = 'API';
+ session_set('scope', 'API');
if ($this->isUserAuthenticated($username, $password)) {
$this->userSession->initialize($this->userCacheDecorator->getByUsername($username));