From 4054efc251ddc72041467c0096c4f6a236d27f89 Mon Sep 17 00:00:00 2001 From: Vijay Kumar Date: Mon, 16 Apr 2018 14:02:47 +0530 Subject: [PATCH] https://github.com/ApplaudSolutions/mbaas/issues/797 --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index 6e6a397..dffbf5b 100644 --- a/index.js +++ b/index.js @@ -164,9 +164,9 @@ function mountSwagger(loopbackApplication, swaggerApp, opts) { } else { result[newKey].get.parameters = []; } - var nonElasticOperationIds = ['.prototype.__get__model', '.prototype.__get__user', '.prototype.__get__tenant']; - var nonElasticOperationId = nonElasticOperationIds.filter(opId => _.includes(result[newKey].get.operationId, opId))[0]; - if (!nonElasticOperationId && _.endsWith(newKey, '/change-stream') && _.isArray(result[newKey].get.parameters) && _.findIndex(result[newKey].get.parameters, { name: 'getFrom', enum: ['elastic'] }) === -1) { + let nonElasticOperationIds = ['.prototype.__get__model', '.prototype.__get__user', '.prototype.__get__tenant']; + let nonElasticOperationId = nonElasticOperationIds.filter(opId => _.includes(result[newKey].get.operationId, opId))[0]; + if (!nonElasticOperationId && !_.endsWith(newKey, '/change-stream') && _.isArray(result[newKey].get.parameters) && _.findIndex(result[newKey].get.parameters, { name: 'getFrom', enum: ['elastic'] }) === -1) { result[newKey].get.parameters.push({ name: 'getFrom', in: 'query',