Initial commit
This commit is contained in:
14
frontend/src/sagas/root.js
Normal file
14
frontend/src/sagas/root.js
Normal file
@ -0,0 +1,14 @@
|
||||
import { all, takeLatest } from 'redux-saga/effects';
|
||||
import loginSaga from './login';
|
||||
import { LOGIN } from '../actions/login';
|
||||
import { SEND_MESSAGE, FETCH_MESSAGES, STREAM_EVENTS } from '../actions/chat';
|
||||
import { sendMessageSaga, fetchMessagesSaga, streamEventsSaga } from './chat';
|
||||
|
||||
export default function* rootSaga() {
|
||||
yield all([
|
||||
takeLatest(LOGIN, loginSaga),
|
||||
takeLatest(SEND_MESSAGE, sendMessageSaga),
|
||||
takeLatest(FETCH_MESSAGES, fetchMessagesSaga),
|
||||
takeLatest(STREAM_EVENTS, streamEventsSaga)
|
||||
]);
|
||||
}
|
Reference in New Issue
Block a user