update: banned user remove session

This commit is contained in:
v2board
2023-02-03 23:39:31 +08:00
parent 10861856b5
commit 2429ff6d58
3 changed files with 14 additions and 2 deletions

View File

@ -39,7 +39,7 @@ class UserController extends Controller
}
$authService = new AuthService($user);
return response([
'data' => $authService->delSession($request->input('session_id'))
'data' => $authService->removeSession($request->input('session_id'))
]);
}