export const GET_JOBS = 'GET_JOBS';
export const SET_LOADING_JOBS = 'SET_LOADING_JOBS';
export const SET_TOTAL_JOBS_PAGE = 'SET_TOTAL_JOBS_PAGE';
export const SET_JOBS_FILTER = 'SET_JOBS_FILTER';
export const SET_TOTAL_JOBS = 'SET_TOTAL_JOBS';
export const GET_JOB_DETAIL = 'GET_JOB_DETAIL';
export const CREATE_JOBS = 'CREATE_JOBS';
export const UPDATE_JOBS = 'UPDATE_JOBS';
export const DELETE_JOBS = 'DELETE_JOBS';
export const FETCH_FROM_API = 'FETCH_FROM_API';
export const FETCH_FROM_API_UNPARSED = 'FETCH_FROM_API_UNPARSED';
|