ApplaudSolutions/mbaas#875 set mongo as default value getFrom field

This commit is contained in:
Tushar Gupta 2018-04-20 12:48:02 +05:30
parent 4054efc251
commit d91ab5b992
1 changed files with 3 additions and 3 deletions

View File

@ -166,13 +166,13 @@ function mountSwagger(loopbackApplication, swaggerApp, opts) {
}
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) {
if (!nonElasticOperationId && !_.endsWith(newKey, '/change-stream') && _.isArray(result[newKey].get.parameters) && _.findIndex(result[newKey].get.parameters, { name: 'getFrom', enum: ['mongo', 'elastic'] }) === -1) {
result[newKey].get.parameters.push({
name: 'getFrom',
in: 'query',
required: false,
required: true,
type: 'string',
enum: ['elastic'],
enum: ['mongo', 'elastic'],
description: 'Gets the resource from the indexed elastic store rather than the default'
});
}