remove getFrom for unsupported endpoints https://github.com/ApplaudSolutions/mbaas/issues/797
This commit is contained in:
parent
d52eef3bb7
commit
88aedac847
3
index.js
3
index.js
|
@ -164,6 +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) {
|
||||
if (_.isArray(result[newKey].get.parameters) && _.findIndex(result[newKey].get.parameters, { name: 'getFrom', enum: ['elastic'] }) === -1) {
|
||||
result[newKey].get.parameters.push({
|
||||
name: 'getFrom',
|
||||
|
|
Loading…
Reference in New Issue