This commit is contained in:
William 2023-02-03 12:01:55 +01:00
parent 5491c98563
commit 5787e5c904
1 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,8 @@ App::group('/chat', function() {
ChatController::index(...)); ChatController::index(...));
App::get('/messages', App::get('/messages',
ChatController::messages(...)); ChatController::messages(...));
App::get('/sync',
ChatController::sync(...));
}); });
http_response_code(404); http_response_code(404);