class OidcController extends Controller
{
-
protected $oidcService;
/**
if ($storedState !== $responseState) {
$this->showErrorNotification(trans('errors.oidc_fail_authed', ['system' => config('oidc.name')]));
+
return redirect('/login');
}
$this->oidcService->processAuthorizeResponse($request->query('code'));
+
return redirect()->intended();
}
}