mirror of
https://github.com/flarum/core.git
synced 2025-07-25 18:51:40 +02:00
Rework sessions, remember cookies, and auth again
- Use Symfony's Session component to work with sessions, instead of a custom database model. Separate the concept of access tokens from sessions once again. - Extract common session/remember cookie logic into SessionAuthenticator and Rememberer classes. - Extract AuthenticateUserTrait into a new AuthenticationResponseFactory class. - Fix forgot password process.
This commit is contained in:
@@ -47,6 +47,8 @@ class ResetPasswordController extends AbstractHtmlController
|
||||
throw new InvalidConfirmationTokenException;
|
||||
}
|
||||
|
||||
return $this->view->make('flarum::reset')->with('token', $token->id);
|
||||
return $this->view->make('flarum::reset')
|
||||
->with('passwordToken', $token->id)
|
||||
->with('csrfToken', $request->getAttribute('session')->get('csrf_token'));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user