update export Controller to return posted job

This commit is contained in:
Bilal Catic
2020-02-18 11:07:30 +01:00
parent 3ab1ab5769
commit e5c4125145

View File

@@ -57,7 +57,7 @@ class ExportController {
this.exportJobs[jobIndex].state = "finished";
this.exportJobs[jobIndex].updated_at = new Date();
}, timeout, jobIndexToUpdate);
response.send();
response.send(fullExportJob);
}
}
}