diff --git a/services/loopback/common/methods/ticket/list.js b/services/loopback/common/methods/ticket/list.js deleted file mode 100644 index 22567838e..000000000 --- a/services/loopback/common/methods/ticket/list.js +++ /dev/null @@ -1,19 +0,0 @@ -module.exports = function(Ticket) { - Ticket.remoteMethod('list', { - description: 'List tickets for production', - returns: { - arg: 'tickets', - type: 'object' - }, - http: { - verb: 'get', - path: '/list' - } - }); - - Ticket.list = function(cb) { - var params = [1, 0]; - var query = 'CALL production_control_source(?, ?)'; - Ticket.rawSql(query, params, cb); - }; -};