blob: 72bb59298b340b0824e924c4fafeda90a4ccac3a [file] [log] [blame]
module.exports = function(tid, logger, utils) {
// Test Endpoint
this.endPoint = '/cloudanttriggers/:id';
// Delete Logic
this.delete = function (req, res) {
var method = 'DELETE /cloudanttriggers';
logger.info(tid, method);
utils.deleteTriggerFromDB(req.params.id, res);
};
}