Merge git://192.168.0.112
This commit is contained in:
@ -1,9 +1,13 @@
|
||||
import { all, takeLatest } from 'redux-saga/effects';
|
||||
import { LOGIN_REQUEST } from '../actions/auth.actions';
|
||||
import { loginSaga} from './auth.sagas';
|
||||
import { PROJECT_USER_LIST, PROJECT_LIST } from '../actions/project';
|
||||
import { projectUserListSaga, projectListSaga } from './project';
|
||||
|
||||
export default function* rootSaga() {
|
||||
yield all([
|
||||
takeLatest(LOGIN_REQUEST, loginSaga),
|
||||
takeLatest(PROJECT_USER_LIST, projectUserListSaga),
|
||||
takeLatest(PROJECT_LIST, projectListSaga),
|
||||
]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user