Removed waiting request
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2020-06-02 18:28:13 +02:00
parent afa8aad96b
commit 8352459686
1 changed files with 8 additions and 5 deletions

View File

@ -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'
});
});
};