![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/swagger-api/swagger-ui/src/core/plugins/configs/ |
export const UPDATE_CONFIGS = "configs_update" export const TOGGLE_CONFIGS = "configs_toggle" // Update the configs, with a merge ( not deep ) export function update(configName, configValue) { return { type: UPDATE_CONFIGS, payload: { [configName]: configValue }, } } // Toggle's the config, by name export function toggle(configName) { return { type: TOGGLE_CONFIGS, payload: configName, } } // Hook export const loaded = () => () => { // noop }