2024-02-15 11:46:25 +07:00
|
|
|
import env from "../index";
|
|
|
|
|
const development = `${env.API_URI}/development`;
|
2024-04-04 12:38:48 +07:00
|
|
|
const developmentOrg = `${env.API_URI}/org`
|
2024-02-15 11:46:25 +07:00
|
|
|
export default {
|
|
|
|
|
development,
|
2024-04-03 17:12:04 +07:00
|
|
|
/** history */
|
|
|
|
|
developmentHistoryList: (type:string) => `${development}/history/${type}/`,
|
|
|
|
|
developmentHistoryAdd: (type:string) => `${development}/history/${type}`,
|
|
|
|
|
developmentProjectSearch: () => `${development}/main/search`,
|
2024-04-04 12:38:48 +07:00
|
|
|
|
|
|
|
|
/** history employee */
|
|
|
|
|
developmentProjectSearchEmployee:()=>`${developmentOrg}/profile-employee/`,
|
|
|
|
|
|
2024-04-03 11:14:26 +07:00
|
|
|
/** รายการโครงการ*/
|
|
|
|
|
developmentMain: `${development}/main`,
|
2024-04-03 17:51:00 +07:00
|
|
|
developmentMainById: (id: string) => `${development}/main/${id}`,
|
2024-02-15 11:46:25 +07:00
|
|
|
};
|