mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-13 12:26:34 +03:00
Add path params resolving
This commit is contained in:
parent
31b44c407e
commit
e4eec56dc9
|
@ -81,6 +81,7 @@ export default class SchemaManager {
|
||||||
let methodParams = injectPointers(this.byPointer(methodPtr), methodPtr) || [];
|
let methodParams = injectPointers(this.byPointer(methodPtr), methodPtr) || [];
|
||||||
if (resolveRefs) {
|
if (resolveRefs) {
|
||||||
methodParams = this.resolveRefs(methodParams);
|
methodParams = this.resolveRefs(methodParams);
|
||||||
|
pathParams = this.resolveRefs(pathParams);
|
||||||
}
|
}
|
||||||
return methodParams.concat(pathParams);
|
return methodParams.concat(pathParams);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user