aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--infrastructure/Auth/LoginProxy.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/infrastructure/Auth/LoginProxy.php b/infrastructure/Auth/LoginProxy.php
index f214c23..c245e52 100644
--- a/infrastructure/Auth/LoginProxy.php
+++ b/infrastructure/Auth/LoginProxy.php
@@ -44,12 +44,14 @@ class LoginProxy
$user = $this->userRepository->getWhere('email', $email)->first();
if (!is_null($user)) {
- return $this->proxy('password', [
+ $TokenObject = $this->proxy('password', [
'username' => $email,
'password' => $password
]);
+ return array_merge($TokenObject, ['user_id' => $user->id]);
}
+
throw new InvalidCredentialsException();
}