From 5d3ff3f0d2ecd873dba779da3991a68b0a6c1e4a Mon Sep 17 00:00:00 2001 From: Alfred-Mutai Date: Fri, 25 Oct 2024 12:20:09 +0300 Subject: [PATCH] POC-737: Removed moh -registeres on Services section --- etl-routes.js | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/etl-routes.js b/etl-routes.js index 0fce3ca75..034338cf6 100755 --- a/etl-routes.js +++ b/etl-routes.js @@ -6361,31 +6361,6 @@ module.exports = (function () { notes: 'Api endpoint that returns AMRS ID in string format', tags: ['api'] } - }, - { - method: 'GET', - path: '/etl/registers/defaulter-tracing', - config: { - auth: 'simple', - plugins: {}, - handler: function (request, reply) { - if (request.query.locationUuid) { - const locationUuids = request.query.locationUuid; - getDefaulterTracingData(locationUuids) - .then((results) => { - reply(results); - }) - .catch((error) => { - reply(Boom.internal('An error occured', error)); - }); - } else { - reply(Boom.internal('Request misssing location uuid')); - } - }, - description: 'Get defaulter tracing data', - notes: 'Returns the defaulter tracing data', - tags: ['api'] - } } ];