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

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

View File

@ -151,7 +151,10 @@ 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 === swaggerFilterPath || key.startsWith(swaggerFilterPath + '/'));
if (req.query && req.query.model) {
return (key === swaggerFilterPath || key.startsWith(swaggerFilterPath + '/'));
}
return key.indexOf(swaggerFilterPath) === 0;
}), function(result, val, key) {
const tempKey = key.substring(key.indexOf(tenantId));
const index = (tempKey.indexOf('/') > -1) ? (tempKey.indexOf('/') + 1) : (tempKey.length);