From 83d9936c586e6c5d8d464b7ae56da318268fa0b9 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 17 Aug 2018 18:43:14 +0200 Subject: Added user_id to login answer --- infrastructure/Auth/LoginProxy.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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(); } -- cgit v1.2.3