API workflow

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-10-16 18:10:55 +07:00
parent e9d68b67a4
commit 079a1c1972
5 changed files with 190 additions and 90 deletions

View file

@ -4,6 +4,7 @@ const metadata = `${env.API_URI}/org/metadata/`;
const org = `${env.API_URI}/org`;
const profileOrg = `${env.API_URI}/org/profile`;
const report = `${env.API_URI}/report/profile/`;
const workflow = `${env.API_URI}/org/workflow`;
export default {
profilePosition: () => `${org}/profile/keycloak/position`,
@ -82,4 +83,9 @@ export default {
*/
requestEdit: `${profileOrg}/edit/`,
developmentUser: `${profileOrg}/development/user`,
/**
* workflow
*/
workflow: `${workflow}/`,
};