refactor(oas31): simplify Webhooks component by utilizing selectors (#8481)

Refs #8474
This commit is contained in:
Vladimír Gorej
2023-03-17 18:14:23 +01:00
committed by GitHub
parent 865d98d6be
commit 47e12f1de3
11 changed files with 126 additions and 74 deletions

View File

@@ -2,6 +2,8 @@
* @prettier
*/
import { OrderedMap, Map, List } from "immutable"
import { createSelector } from "reselect"
import { getDefaultRequestBodyValue } from "./components/request-body"
import { stringify } from "../../utils"
@@ -279,3 +281,14 @@ export const validateShallowRequired = (
})
return missingRequiredKeys
}
export const validOperationMethods = createSelector(() => [
"get",
"put",
"post",
"delete",
"options",
"head",
"patch",
"trace",
])