From eece057d2db42392159ddec5739ebf87b0cafb45 Mon Sep 17 00:00:00 2001 From: ASUS <515617283@qq.com> Date: Wed, 3 Dec 2025 15:39:05 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=BC=9A=E8=AF=9D=E5=88=97?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/route.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/route.php b/config/route.php index d9a2c8b..627f55e 100644 --- a/config/route.php +++ b/config/route.php @@ -47,6 +47,7 @@ Route::group('/api/chat', function () { Route::post('/mark-read-all', app\chat\controller\MessageController::class . '@markReadAll'); // 全部已读 Route::post('/unread-count', app\chat\controller\MessageController::class . '@getUnreadCount'); // 未读总数 Route::post('/sessionlist', app\chat\controller\MessageController::class . '@getSessionList'); // 会话列表 + Route::post('/sessionlistdel', app\chat\controller\MessageController::class . '@getSessionListDel'); // 会话列表 })->middleware($jwt_middleware); });