added provider users approve clients functionality

This commit is contained in:
Alexander Wong
2018-01-21 18:20:41 -07:00
parent bc0628bcb7
commit e6ee51f481
14 changed files with 356 additions and 11 deletions
+8
View File
@@ -0,0 +1,8 @@
import { UPDATE_EMPLOYER_REQUEST } from "../../constants/employer.constants";
export function updateEmployerRequest(payload) {
return {
type: UPDATE_EMPLOYER_REQUEST,
data: payload
};
}