diff --git a/print/methods/closure.js b/print/methods/closure.js index b3ccb6430..d8d350cdf 100644 --- a/print/methods/closure.js +++ b/print/methods/closure.js @@ -4,7 +4,14 @@ const smtp = require('../core/smtp'); const config = require('../core/config'); module.exports = app => { - app.get('/api/closure', async function(request, response) { + app.get('/api/closure/by-ticket', async function(request, response) { + }); + + app.get('/api/closure/all', async function(request, response) { + response.status(200).json({ + message: 'Task executed successfully' + }); + const failedtickets = []; const tickets = await db.rawSql(` SELECT @@ -58,9 +65,5 @@ module.exports = app => { html: body }); } - - response.status(200).json({ - message: 'Closure executed successfully' - }); }); };