Files
swagger-ui/src/core/plugins/oas3/index.js
Patryk Rosiak 89cdd7b022 feat: add mutualTLS auth option (#9193)
Refs #8020 

Co-authored-by: Vladimír Gorej <vladimir.gorej@smartbear.com>
2023-09-13 15:32:35 +02:00

33 lines
804 B
JavaScript

/**
* @prettier
*/
import * as specWrapSelectors from "./spec-extensions/wrap-selectors"
import * as authWrapSelectors from "./auth-extensions/wrap-selectors"
import * as specSelectors from "./spec-extensions/selectors"
import components from "./components"
import wrapComponents from "./wrap-components"
import * as actions from "./actions"
import * as selectors from "./selectors"
import reducers from "./reducers"
export default function () {
return {
components,
wrapComponents,
statePlugins: {
spec: {
wrapSelectors: specWrapSelectors,
selectors: specSelectors,
},
auth: {
wrapSelectors: authWrapSelectors,
},
oas3: {
actions: { ...actions },
reducers,
selectors: { ...selectors },
},
},
}
}