Merge branch 'develop' into devTee

This commit is contained in:
setthawutttty 2024-10-17 15:37:04 +07:00
commit 5d9131d5b7
13 changed files with 663 additions and 196 deletions

View file

@ -6,6 +6,7 @@ const orgProfile = `${env.API_URI}/org/profile`;
const orgEmployeePos = `${env.API_URI}/org/employee/pos`;
const orgAct = `${env.API_URI}/org/act`;
const orgPosAct = `${env.API_URI}/org/pos/act`;
const workflow = `${env.API_URI}/org/workflow`;
export default {
keycloakPosition: () => `${organization}/profile/keycloak/position`,
@ -134,4 +135,9 @@ export default {
orgPermissionsSys: `${organization}/permission`,
checkIsOfficer: (id: string) => `${organization}/check/child1/${id}`,
/**
* workflow
*/
workflow: `${workflow}/`,
};