Implement solution check forwarding

This commit is contained in:
Kristóf Tóth
2019-09-06 15:36:40 +02:00
parent 43e43b061d
commit 57db977873
11 changed files with 59 additions and 14 deletions

View File

@ -22,7 +22,7 @@ export class ConsoleComponent implements OnInit {
ngOnInit() {
this.webSocketService.connect();
this.webSocketService.observeKey<WebSocketMessage>('console').subscribe(
this.webSocketService.observeControl<WebSocketMessage>('console').subscribe(
message => this.command_handlers[message.key](message)
);
}