Add path params resolving

This commit is contained in:
Roman Gotsiy 2015-11-04 22:39:46 +02:00
parent 31b44c407e
commit e4eec56dc9

View File

@ -81,6 +81,7 @@ export default class SchemaManager {
let methodParams = injectPointers(this.byPointer(methodPtr), methodPtr) || [];
if (resolveRefs) {
methodParams = this.resolveRefs(methodParams);
pathParams = this.resolveRefs(pathParams);
}
return methodParams.concat(pathParams);
}