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 8771dfc commit dd134f1Copy full SHA for dd134f1
tools/cli/internal/openapi/filter/operations.go
@@ -17,7 +17,7 @@ import (
17
"github.com/getkin/kin-openapi/openapi3"
18
)
19
20
-// OperationsFilter: is a filter that removes the x-xgen-owner-team and x-xgen-changelog extension from operations.
+// OperationsFilter: is a filter that removes the x-xgen-owner-team extension from operations.
21
type OperationsFilter struct {
22
oas *openapi3.T
23
}
@@ -35,7 +35,6 @@ func (f *OperationsFilter) Apply() error {
35
for _, operation := range pathItem.Operations() {
36
if operation.Extensions != nil {
37
delete(operation.Extensions, "x-xgen-owner-team")
38
- delete(operation.Extensions, "x-xgen-changelog")
39
40
41
0 commit comments