actions.js
2 years ago
constants.js
2 years ago
dispatchers.js
2 years ago
index.js
2 years ago
reducer.js
2 years ago
selectors.js
2 years ago
constants.js
16 lines
| 1 | export default { |
| 2 | clearGateway: 'CLEAR_GATEWAY', |
| 3 | clearScenario: 'CLEAR_SCENARIO', |
| 4 | setScenario: 'SET_CURRENT_GATEWAY_SCENARIO', |
| 5 | setGateway: 'SET_CURRENT_GATEWAY', |
| 6 | setGatewaySpecific: 'SET_CURRENT_GATEWAY_SPECIFIC', |
| 7 | setGatewayInner: 'SET_CURRENT_GATEWAY_INNER', |
| 8 | setRequest: 'SET_CURRENT_REQUEST', |
| 9 | setCurrentScenario: 'SET_CURRENT_SCENARIO', |
| 10 | registerEventType: 'REGISTER_EVENT_TYPE', |
| 11 | hardSetGateway: 'HARD_SET_CURRENT_GATEWAY', |
| 12 | hardSetGatewaySpecific: 'HARD_SET_CURRENT_GATEWAY_SPECIFIC' |
| 13 | } |
| 14 | |
| 15 | |
| 16 |