Added server side job calculation. BOD-267

This commit is contained in:
Patrick Fic
2020-08-21 15:48:48 -07:00
parent 488e316550
commit 4a92ef03cc
6 changed files with 362 additions and 7 deletions

View File

@@ -72,6 +72,9 @@ app.post(
smsStatus.status
);
var job = require("./server/job/job");
app.post("/job/totals", job.totals);
//Scheduling
var scheduling = require("./server/scheduling/scheduling-job");
app.post("/scheduling/job", scheduling.job);