Adde email confirmation template.

This commit is contained in:
Patrick Fic
2021-01-11 15:37:52 -08:00
parent 03e5d38c8a
commit 5391aeef82
4 changed files with 11 additions and 4 deletions

View File

@@ -112,10 +112,10 @@ exports.job = async (req, res) => {
? compDate.format("yyyy-MM-DD")
: todayIsoString
: todayIsoString;
console.log("bucketMatrix", bucketMatrix);
bucketMatrix[dateToUse] = {
...bucketMatrix[dateToUse],
out: bucketMatrix[dateToUse].out + 1,
out: (bucketMatrix[dateToUse].out || 0) + 1,
};
}
});