adding reducer and saga for employee

This commit is contained in:
jfrye122
2023-04-13 13:34:20 -04:00
parent 35573417c4
commit f8a0992efe
4 changed files with 26 additions and 6 deletions

View File

@@ -27,3 +27,9 @@ export function loginEmployeeSuccess(technician) {
payload: technician
}
}
export function loginEmployeeFal(error) {
return {
type: EmployeeActionTypes.AUTHORIZING_EMPLOYEE_FALURE,
error: error
}
}