mirror of
https://github.com/reactos/developer-web-interface.git
synced 2024-11-26 21:30:35 +00:00
modifying root saga to include buildreq saga
This commit is contained in:
parent
16882cc86f
commit
96277e8bc4
@ -4,7 +4,14 @@ import commitsSaga from './commitsSaga';
|
||||
import branchesSaga from './branchesSaga';
|
||||
import pullsSaga from './pullsSaga';
|
||||
import buildsSaga from './buildsSaga';
|
||||
import buildReqSaga from './buildReqSaga';
|
||||
|
||||
export default function* rootSaga() {
|
||||
yield all([commitsSaga(), branchesSaga(), pullsSaga(), buildsSaga()]);
|
||||
yield all([
|
||||
commitsSaga(),
|
||||
branchesSaga(),
|
||||
pullsSaga(),
|
||||
buildsSaga(),
|
||||
buildReqSaga()
|
||||
]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user