Add support for sending arbitrary TFW message on bot message click

This commit is contained in:
Kristóf Tóth
2019-12-19 14:49:27 +01:00
parent f17fe18cef
commit f7a2182ba6
3 changed files with 9 additions and 1 deletions
+6
View File
@@ -65,4 +65,10 @@ export class MessagesComponent implements OnInit {
'key': 'message.queue.drain'
});
}
sendMessageCommand(message: MessageData) {
if ('command' in message) {
this.websocketService.send(message.command);
}
}
}