改进 超时时间

This commit is contained in:
iVampireSP.com 2023-02-02 14:33:34 +08:00
parent baf684dffe
commit 1079b153dd
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -140,7 +140,7 @@ public function storeAuthRequest(Request $request): RedirectResponse
$data['user'] = $request->user('web');
Cache::put('auth_request:'.$request->input('token'), $data, 120);
Cache::put('auth_request:'.$request->input('token'), $data, 60);
return redirect()->route('index')->with('success', '登录请求已确认。');
}