ApplaudSolutions/applaud-cloud#1222 fix swagger API tab showing multiple model

This commit is contained in:
Tushar Gupta 2018-10-30 15:13:29 +05:30
parent a482e60cc9
commit 7b6fbffef3
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ function mountSwagger(loopbackApplication, swaggerApp, opts) {
if (swaggerObject && swaggerObject.paths) {
var filteredSwaggerObject = JSON.parse(JSON.stringify(swaggerObject));
filteredSwaggerObject.paths = _.reduce(_.pickBy(swaggerObject.paths, function(val, key) {
return key.indexOf(swaggerFilterPath) === 0;
return (key === swaggerFilterPath || key.startsWith(swaggerFilterPath + '/'));
}), function(result, val, key) {
const tempKey = key.substring(key.indexOf(tenantId));
const index = (tempKey.indexOf('/') > -1) ? (tempKey.indexOf('/') + 1) : (tempKey.length);