You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
896 B

// Reducer Employee Action Constants
export const IS_SENDING_EMPLOYEE_REQUEST = "IS_SENDING_EMPLOYEE_REQUEST";
export const SET_EMPLOYEE_REQUEST_ERROR = "SET_EMPLOYEE_REQUEST_ERROR";
export const CLEAR_EMPLOYEE_REQUEST_ERROR = "CLEAR_EMPLOYEE_REQUEST_ERROR";
export const SET_EMPLOYEE_REQUEST_SUCCESS = "SET_EMPLOYEE_REQUEST_SUCCESS";
export const CLEAR_EMPLOYEE_REQUEST_SUCCESS = "CLEAR_EMPLOYEE_REQUEST_SUCCESS";
export const SET_EMPLOYEE_UUID = "SET_EMPLOYEE_UUID";
export const SET_FORM_EMPLOYEE_EMAIL = "SET_FORM_EMPLOYEE_EMAIL";
export const SET_FORM_EMPLOYEE_NOTE = "SET_FORM_EMPLOYEE_NOTE";
export const SET_CLEAR_EMPLOYEE_STATE = "SET_CLEAR_EMPLOYEE_STATE";
// Saga Worktype Action Constants
export const CREATE_EMPLOYEE_REQUEST = "CREATE_EMPLOYEE_REQUEST";
export const READ_EMPLOYEE_REQUEST = "READ_EMPLOYEE_REQUEST";
export const DELETE_EMPLOYEE_REQUEST = "DELETE_EMPLOYEE_REQUEST";