From 8218c3d3c21bfa7c4f3ee4872722b9b1261576fb Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Thu, 7 Sep 2017 19:27:13 +0200 Subject: Add machine mode with title and delete options --- src/sagas/index.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/sagas/index.js') diff --git a/src/sagas/index.js b/src/sagas/index.js index e6c48da4..91b8a024 100644 --- a/src/sagas/index.js +++ b/src/sagas/index.js @@ -6,6 +6,7 @@ import { ADD_RACK_TO_TILE, ADD_TILE, CANCEL_NEW_ROOM_CONSTRUCTION, + DELETE_MACHINE, DELETE_RACK, DELETE_ROOM, DELETE_TILE, @@ -22,6 +23,7 @@ import { onAddRackToTile, onAddTile, onCancelNewRoomConstruction, + onDeleteMachine, onDeleteRack, onDeleteRoom, onDeleteTile, @@ -49,4 +51,5 @@ export default function* rootSaga() { yield takeEvery(DELETE_RACK, onDeleteRack); yield takeEvery(ADD_RACK_TO_TILE, onAddRackToTile); yield takeEvery(ADD_MACHINE, onAddMachine); + yield takeEvery(DELETE_MACHINE, onDeleteMachine); } -- cgit v1.2.3