Merge branch 'develop' into nice_dev

# Conflicts:
#	src/modules/02_organizationalNew/components/DialogSelectPerson.vue
This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-02-08 17:01:58 +07:00
commit 21e1249d4c
5 changed files with 882 additions and 196 deletions

View file

@ -6,7 +6,7 @@ const profile = `${env.API_URI_PROFILE_SERVICE}/profile/`;
const report = `${env.API_REPORT_URI}/report/profile/`;
const organizationRoot = `${env.API_URI}/profile/organization/list/root`;
const registryNew = `${env.API_URI}/org/profile/`;
export default {
/**
* api
@ -199,5 +199,9 @@ export default {
// verify
profileVerified: (profileId: string) => `${profile}verified/${profileId}`,
profileVerifiedUnlock: (profileId: string) => `${profile}not-verified/${profileId}`,
profileVerifiedUnlock: (profileId: string) =>
`${profile}not-verified/${profileId}`,
registryNew,
registryNewId: (id: string) => `${registryNew}${id}`,
};