aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarvin Borner2018-08-16 16:15:52 +0200
committerMarvin Borner2018-08-16 16:15:52 +0200
commita5994661adb85264eca6d12e851a88637782c155 (patch)
tree56ff1adacca1015c28b14158bd7f5b6a527cfae7
parent59a401bb45cff1f0b01b241e24da8958ffa50e94 (diff)
Removed user data from login message
-rw-r--r--infrastructure/Auth/LoginProxy.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/infrastructure/Auth/LoginProxy.php b/infrastructure/Auth/LoginProxy.php
index 817b49d..f214c23 100644
--- a/infrastructure/Auth/LoginProxy.php
+++ b/infrastructure/Auth/LoginProxy.php
@@ -44,11 +44,10 @@ class LoginProxy
$user = $this->userRepository->getWhere('email', $email)->first();
if (!is_null($user)) {
- $TokenObject = $this->proxy('password', [
+ return $this->proxy('password', [
'username' => $email,
'password' => $password
]);
- return array_merge($TokenObject, ['user_data' => json_decode(json_encode($user), true)]);
}
throw new InvalidCredentialsException();