Finished functionally complete client registration workflow
This commit is contained in:
+4
-1
@@ -1,4 +1,7 @@
|
||||
import { takeLatest } from "redux-saga/effects";
|
||||
import { SEND_REGISTER_REQUEST } from "../constants/auth.constants";
|
||||
import { registerUserFlow } from "./auth.sagas";
|
||||
|
||||
export default function* rootSaga() {
|
||||
|
||||
yield takeLatest(SEND_REGISTER_REQUEST, registerUserFlow);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user