feat: update firmware upload status through websocket

This commit is contained in:
2025-10-21 13:00:02 +02:00
parent 85802c68db
commit 6ed42f9c90
3 changed files with 529 additions and 105 deletions

View File

@@ -225,6 +225,9 @@ class WebSocketClient {
case 'node_discovery':
this.emit('nodeDiscovery', data);
break;
case 'firmware_upload_status':
this.emit('firmwareUploadStatus', data);
break;
default:
logger.debug('Unknown WebSocket message type:', data.type);
}