We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7069446 commit 32f75a1Copy full SHA for 32f75a1
src/Microsoft.OpenApi/Services/CopyReferences.cs
@@ -74,6 +74,12 @@ public override void Visit(IOpenApiReferenceable referenceable)
74
case OpenApiSecurityScheme securityScheme:
75
AddSecuritySchemeToComponents(securityScheme);
76
break;
77
+ case OpenApiPathItemReference openApiPathItemReference:
78
+ AddPathItemToComponents(openApiPathItemReference.Target, openApiPathItemReference.Reference.Id);
79
+ break;
80
+ case OpenApiPathItem pathItem:
81
+ AddPathItemToComponents(pathItem);
82
83
default:
84
85
}
0 commit comments