Merge branch 'develop' into adiDev

# Conflicts:
#	src/controllers/CommandController.ts
This commit is contained in:
AdisakKanthawilang 2024-10-11 11:10:04 +07:00
commit 0cc21ebb0f
30 changed files with 2778 additions and 283 deletions

View file

@ -76,7 +76,6 @@ class CallAPI {
response: JSON.stringify(error),
},
});
console.log(error);
throw error;
}
}

View file

@ -53,7 +53,6 @@ class CheckAuth {
return await new CallAPI()
.GetData(req, `/org/permission/org/${system}/${action}`)
.then(async (x) => {
console.log(x);
let privilege = x.privilege;
// if (action.trim().toLocaleUpperCase() == "CREATE")
// privilege = await this.PermissionCreate(req, system);
@ -84,7 +83,16 @@ class CheckAuth {
} else if (x.orgChild4Id == null) {
node = 3;
}
if (privilege == "ROOT") {
if (privilege == "OWNER") {
data = {
root: null,
child1: null,
child2: null,
child3: null,
child4: null,
privilege: "OWNER",
};
} else if (privilege == "ROOT") {
data = {
root: [x.orgRootId],
child1: null,
@ -112,15 +120,6 @@ class CheckAuth {
privilege: "NORMAL",
};
} else if (privilege == "SPECIFIC") {
} else if (privilege == "OWNER") {
data = {
root: null,
child1: null,
child2: null,
child3: null,
child4: null,
privilege: "OWNER",
};
}
return data;