Added updating of display name to profile. Added employees table.
This commit is contained in:
@@ -3,9 +3,10 @@ import { all, call } from "redux-saga/effects";
|
||||
//List of all Sagas
|
||||
// import { shopSagas } from "./shop/shop.sagas";
|
||||
import { userSagas } from "./user/user.sagas";
|
||||
import { messagingSagas } from "./messaging/messaging.sagas";
|
||||
//import { cartSagas } from "./cart/cart.sagas";
|
||||
|
||||
export default function* rootSaga() {
|
||||
//All starts all the Sagas concurrently.
|
||||
yield all([call(userSagas)]);
|
||||
yield all([call(userSagas), call(messagingSagas)]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user