integrity: add integrity check fields and initial UI

This commit is contained in:
Girish Ramakrishnan
2026-02-08 11:17:27 +01:00
parent 6303602323
commit 5276321ade
13 changed files with 232 additions and 50 deletions
+2 -2
View File
@@ -40,8 +40,8 @@ function create() {
error = e;
}
if (error || result.status !== 200) return [error || result];
return [null];
if (error || result.status !== 201) return [error || result];
return [null, result.body.taskId];
},
async get(id) {
let error, result;