From fa087ea275aad5bab24d6d0ff743f078e2fe5d7f Mon Sep 17 00:00:00 2001 From: ASUS <515617283@qq.com> Date: Wed, 3 Dec 2025 10:40:41 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BE=A4=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/route.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/route.php b/config/route.php index da96143..d9a2c8b 100644 --- a/config/route.php +++ b/config/route.php @@ -46,7 +46,7 @@ Route::group('/api/chat', function () { Route::post('/mark-read', app\chat\controller\MessageController::class . '@markRead'); // 标记已读 Route::post('/mark-read-all', app\chat\controller\MessageController::class . '@markReadAll'); // 全部已读 Route::post('/unread-count', app\chat\controller\MessageController::class . '@getUnreadCount'); // 未读总数 - Route::post('/session-list', app\chat\controller\MessageController::class . '@getSessionList'); // 会话列表 + Route::post('/sessionlist', app\chat\controller\MessageController::class . '@getSessionList'); // 会话列表 })->middleware($jwt_middleware); });