Added job lookup framework to tech console. BOD-95 BOD-96

This commit is contained in:
Patrick Fic
2020-06-30 09:58:24 -07:00
parent 0e9cc9620b
commit f1f9d7424b
7 changed files with 448 additions and 24 deletions

View File

@@ -1,9 +1,8 @@
import { all, takeLatest, call, put, select } from "redux-saga/effects";
import TechActionTypes from "./tech.types";
import { client } from "../../App/App.container";
import { techLoginStart,techLoginSuccess, techLoginFailure } from "./tech.actions";
import axios from "axios";
import { all, call, put, select, takeLatest } from "redux-saga/effects";
import { selectBodyshop } from "../user/user.selectors";
import { techLoginFailure, techLoginSuccess } from "./tech.actions";
import TechActionTypes from "./tech.types";
export function* onSignInStart() {
yield takeLatest(TechActionTypes.TECH_LOGIN_START, signInStart);