Halfway through in refactoring the report generation to a separate process running asynchronously of the Express server.

This commit is contained in:
Tomas Bures 2017-04-17 18:31:01 -04:00
parent 2056645023
commit e7d12f1dbc
10 changed files with 319 additions and 206 deletions

View file

@ -55,10 +55,7 @@ router.post('/ajax', (req, res) => {
});
router.get('/create', passport.csrfProtection, (req, res) => {
const data = tools.convertKeys(req.query, {
skip: ['layout']
});
const data = req.query;
const wizard = req.query['type'] || '';
if (wizard == 'subscribers-all') {
@ -86,7 +83,6 @@ router.get('/create', passport.csrfProtection, (req, res) => {
' }\n' +
'\n' +
' const data = {\n' +
' title: "Sample Report on " + inputs.campaign.name,\n' +
' results: results\n' +
' };\n' +
'\n' +
@ -152,7 +148,6 @@ router.get('/create', passport.csrfProtection, (req, res) => {
' }\n' +
'\n' +
' let data = {\n' +
' title: "Sample Report on " + inputs.campaign.name,\n' +
' results: results\n' +
' };\n' +
'\n' +
@ -226,7 +221,6 @@ router.get('/create', passport.csrfProtection, (req, res) => {
' }\n' +
'\n' +
' let data = {\n' +
' title: "Sample Export of " + inputs.list.name,\n' +
' results: results\n' +
' };\n' +
'\n' +