List projet + list request
This commit is contained in:
@ -1,7 +1,10 @@
|
||||
import { all, takeLatest } from 'redux-saga/effects';
|
||||
import { PROJECT_USER_LIST, PROJECT_LIST } from '../actions/project';
|
||||
import { projectUserListSaga, projectListSaga } from './project';
|
||||
|
||||
export default function* rootSaga() {
|
||||
yield all([
|
||||
|
||||
takeLatest(PROJECT_USER_LIST, projectUserListSaga),
|
||||
takeLatest(PROJECT_LIST, projectListSaga),
|
||||
]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user