add task completed

This commit is contained in:
2025-11-28 21:11:33 -05:00
parent 4305b12488
commit cdeaef67ac
2 changed files with 18 additions and 0 deletions

View File

@@ -336,6 +336,11 @@ async function triggerInstall() {
if (totalTasks > 0) {
console.info(`[Info] All tasks completed (${completedTasks}/${totalTasks})`);
}
try {
await fetch("/tasksCompleted", { method: "POST" });
} catch (err) {
console.warn("Could not notify server about completion:", err);
}
}
}