Update dependencies

This commit is contained in:
Pablo Ferreiro
2022-11-05 19:31:24 +01:00
parent dd94ff0011
commit 89bcb58703
5 changed files with 128 additions and 120 deletions

View File

@@ -3,6 +3,16 @@ class Utils {
// TODO, add proper verify fp method
return "verify_68b8ccfa65726db8b3db0cc07821d696";
}
static makePayload(data, navigator) {
return JSON.stringify({
status: "ok",
data: {
...data,
navigator
}
})
}
}
module.exports = Utils;