From f572b0808c38e74891741b44fd0cd9d0b4e1bbd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Thu, 27 Feb 2025 08:22:33 +0100 Subject: [PATCH] fix w masowej aktualizacji dirmware --- templates/devices.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/templates/devices.html b/templates/devices.html index 9c164cd..a109c79 100644 --- a/templates/devices.html +++ b/templates/devices.html @@ -176,6 +176,13 @@ // Obsługa przycisku restartu w prompt document.getElementById('mass-firmware-reboot-btn').addEventListener('click', function() { promptDiv.style.display = 'none'; + + // Wysyłamy reboot dla każdego wybranego urządzenia + selectedDevices.forEach(function(id) { + fetch("{{ url_for('restart_device', device_id=0) }}".replace("0", id), { method: 'POST' }) + .catch(function(error){ console.error('Błąd wysyłania reboot dla urządzenia ' + id, error); }); + }); + // Pokaż overlay z paskiem postępu dla reboot (2 minuty) var overlay = document.getElementById('mass-firmware-update-overlay'); overlay.style.display = 'block';