mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 00:43:54 +08:00
Allow custom redirection after logging out
This commit is contained in:
parent
46818ccd94
commit
f7709aff95
|
@ -66,7 +66,9 @@ class LogOutController implements ControllerInterface
|
|||
{
|
||||
$session = $request->getAttribute('session');
|
||||
|
||||
$response = new RedirectResponse($this->app->url());
|
||||
$url = array_get($request->getQueryParams(), 'return', $this->app->url());
|
||||
|
||||
$response = new RedirectResponse($url);
|
||||
|
||||
if ($user = User::find($session->get('user_id'))) {
|
||||
if (array_get($request->getQueryParams(), 'token') !== $session->get('csrf_token')) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user