feat: synchronisation mode deconnecte fin chat et stats
This commit is contained in:
@@ -103,8 +103,11 @@ class Router {
|
||||
// Routes du module Chat
|
||||
$this->get('chat/rooms', ['ChatController', 'getRooms']);
|
||||
$this->post('chat/rooms', ['ChatController', 'createRoom']);
|
||||
$this->put('chat/rooms/:id', ['ChatController', 'updateRoom']);
|
||||
$this->delete('chat/rooms/:id', ['ChatController', 'deleteRoom']);
|
||||
$this->get('chat/rooms/:id/messages', ['ChatController', 'getRoomMessages']);
|
||||
$this->post('chat/rooms/:id/messages', ['ChatController', 'sendMessage']);
|
||||
$this->put('chat/messages/:id', ['ChatController', 'updateMessage']);
|
||||
$this->post('chat/rooms/:id/read', ['ChatController', 'markAsRead']);
|
||||
$this->get('chat/recipients', ['ChatController', 'getRecipients']);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user