20 lines
642 B
JavaScript
20 lines
642 B
JavaScript
import { all } from 'redux-saga/effects';
|
|
|
|
import { saga as commonComponentsSaga } from '../common-components';
|
|
import { saga as forgotPasswordSaga } from '../forgot-password';
|
|
import { saga as loginSaga } from '../login';
|
|
import { saga as authnProgressiveProfilingSaga } from '../progressive-profiling';
|
|
import { saga as registrationSaga } from '../register';
|
|
import { saga as resetPasswordSaga } from '../reset-password';
|
|
|
|
export default function* rootSaga() {
|
|
yield all([
|
|
loginSaga(),
|
|
registrationSaga(),
|
|
commonComponentsSaga(),
|
|
forgotPasswordSaga(),
|
|
resetPasswordSaga(),
|
|
authnProgressiveProfilingSaga(),
|
|
]);
|
|
}
|