(@MessageBody() id: number)
| 23 | |
| 24 | @SubscribeMessage('findOneChat') |
| 25 | findOne(@MessageBody() id: number) { |
| 26 | return this.chatService.findOne(id); |
| 27 | } |
| 28 | |
| 29 | @SubscribeMessage('updateChat') |
| 30 | update(@MessageBody() updateChatDto: UpdateChatDto) { |
nothing calls this directly
no test coverage detected