Browse Source

add endpoint

pull/1/head
wahyuun 9 months ago
parent
commit
e6f1eefb04
  1. 36
      src/const/ApiConst.js

36
src/const/ApiConst.js

@ -456,6 +456,42 @@ export const PROJECT_PHASE_DELETE = (id) => {
};
export const PHASE_PROYEK = `${BASE_SIMPRO_LUMEN}/project-phase/list`;
export const PROJECT_EXPENDITURE_ADD = `${BASE_SIMPRO_LUMEN}/project-expenditure/add`;
export const PROJECT_EXPENDITURE_SEARCH = `${BASE_SIMPRO_LUMEN}/project-expenditure/search`;
export const PROJECT_EXPENDITURE_EDIT = (id) => {
return `${BASE_SIMPRO_LUMEN}/project-expenditure/update/${id}`;
};
export const PROJECT_EXPENDITURE_DELETE = (id) => {
return `${BASE_SIMPRO_LUMEN}/project-expenditure/delete/${id}`;
};
export const PROJECT_FINANCIAL_HEALTH_ADD = `${BASE_SIMPRO_LUMEN}/project-financial-health/add`;
export const PROJECT_FINANCIAL_HEALTH_SEARCH = `${BASE_SIMPRO_LUMEN}/project-financial-health/search`;
export const PROJECT_FINANCIAL_HEALTH_EDIT = (id) => {
return `${BASE_SIMPRO_LUMEN}/project-financial-health/update/${id}`;
};
export const PROJECT_FINANCIAL_HEALTH_DELETE = (id) => {
return `${BASE_SIMPRO_LUMEN}/project-financial-health/delete/${id}`;
};
export const PROJECT_SCHEDULE_HEALTH_ADD = `${BASE_SIMPRO_LUMEN}/project-schedule-health/add`;
export const PROJECT_SCHEDULE_HEALTH_SEARCH = `${BASE_SIMPRO_LUMEN}/project-schedule-health/search`;
export const PROJECT_SCHEDULE_HEALTH_EDIT = (id) => {
return `${BASE_SIMPRO_LUMEN}/project-schedule-health/update/${id}`;
};
export const PROJECT_SCHEDULE_HEALTH_DELETE = (id) => {
return `${BASE_SIMPRO_LUMEN}/project-schedule-health/delete/${id}`;
};
export const PROJECT_INVOICE_ADD = `${BASE_SIMPRO_LUMEN}/project-invoice/add`;
export const PROJECT_INVOICE_SEARCH = `${BASE_SIMPRO_LUMEN}/project-invoice/search`;
export const PROJECT_INVOICE_EDIT = (id) => {
return `${BASE_SIMPRO_LUMEN}/project-invoice/update/${id}`;
};
export const PROJECT_INVOICE_DELETE = (id) => {
return `${BASE_SIMPRO_LUMEN}/project-invoice/delete/${id}`;
};
export const PROJECT_CHARTER_ADD = `${BASE_SIMPRO_LUMEN}/project-charter/add`;
export const PROJECT_CHARTER_SEARCH = `${BASE_SIMPRO_LUMEN}/project-charter/search`;
export const PROJECT_CHARTER_EDIT = (id) => {

Loading…
Cancel
Save