From c47a27b826f7d76410308a4151611a366f9eaf46 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Fri, 25 Aug 2017 17:48:12 +0200 Subject: Fetch and display datacenter topology --- src/api/sagas/index.js | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/api/sagas/index.js (limited to 'src/api/sagas/index.js') diff --git a/src/api/sagas/index.js b/src/api/sagas/index.js deleted file mode 100644 index 7fe57453..00000000 --- a/src/api/sagas/index.js +++ /dev/null @@ -1,15 +0,0 @@ -import {takeEvery} from "redux-saga/effects"; -import {LOG_IN} from "../../actions/auth"; -import {ADD_SIMULATION, DELETE_SIMULATION} from "../../actions/simulations"; -import {DELETE_CURRENT_USER, FETCH_AUTHORIZATIONS_OF_CURRENT_USER} from "../../actions/users"; -import {onDeleteCurrentUser} from "./profile"; -import {onSimulationAdd, onSimulationDelete} from "./simulations"; -import {onFetchAuthorizationsOfCurrentUser, onFetchLoggedInUser} from "./users"; - -export default function* rootSaga() { - yield takeEvery(LOG_IN, onFetchLoggedInUser); - yield takeEvery(FETCH_AUTHORIZATIONS_OF_CURRENT_USER, onFetchAuthorizationsOfCurrentUser); - yield takeEvery(ADD_SIMULATION, onSimulationAdd); - yield takeEvery(DELETE_SIMULATION, onSimulationDelete); - yield takeEvery(DELETE_CURRENT_USER, onDeleteCurrentUser); -} -- cgit v1.2.3