1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 05:30:38 +02:00

Extend access token lifetime when remembering a login

This commit is contained in:
Toby Zerner
2016-01-02 15:08:28 +10:30
parent f6f9e45085
commit 46818ccd94
2 changed files with 7 additions and 6 deletions

View File

@@ -79,7 +79,7 @@ class LogInController implements ControllerInterface
event(new UserLoggedIn($this->users->findOrFail($data->userId), $token));
$response = $this->rememberer->remember($response, $token->id);
$response = $this->rememberer->remember($response, $token);
}
return $response;