From 2b9febb7d47b5112d3fe69f7d383f5ffb506efb5 Mon Sep 17 00:00:00 2001 From: snoop Date: Fri, 11 Aug 2017 17:57:01 +0900 Subject: [PATCH] sensor setup --- src/ts/@overflow/app/config/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ts/@overflow/app/config/index.ts b/src/ts/@overflow/app/config/index.ts index 52eb65a..574b167 100644 --- a/src/ts/@overflow/app/config/index.ts +++ b/src/ts/@overflow/app/config/index.ts @@ -19,6 +19,9 @@ import SensorItemReadAllBySensorReducer from '@overflow/sensor/redux/reducer/ite import readMachineReducer from '@overflow/infra/redux/reducer/machine_read'; import readHostReducer from '@overflow/infra/redux/reducer/host_read'; +import CrawlerReadAllByTargetReducer from '@overflow/meta/redux/reducer/crawler_read_all_by_target'; +import CrawlerAuthInputsReducer from '@overflow/meta/redux/reducer/crawler_auth_inputs'; + import AsyncRequest from '@overflow/app/redux/saga/AsyncRequest'; // Container Configuration @@ -65,6 +68,8 @@ const reduxConfig: ReduxConfig = { readNoAuthProbeReducer, readMachineReducer, readHostReducer, + CrawlerReadAllByTargetReducer, + CrawlerAuthInputsReducer, ], sagaWatchers: [ AsyncRequest,