Fix bug with checking user access
This commit is contained in:
parent
af24967c88
commit
883b3761d5
|
@ -108,7 +108,7 @@ class AccessController {
|
||||||
let roleIds = this.userHierarchies[userRoleId]
|
let roleIds = this.userHierarchies[userRoleId]
|
||||||
if (!roleIds) {
|
if (!roleIds) {
|
||||||
roleIds = await exports.getUserRoleHierarchy(this.appId, userRoleId)
|
roleIds = await exports.getUserRoleHierarchy(this.appId, userRoleId)
|
||||||
this.userHierarchies[userRoleId] = userRoleId
|
this.userHierarchies[userRoleId] = roleIds
|
||||||
}
|
}
|
||||||
|
|
||||||
return roleIds.indexOf(tryingRoleId) !== -1
|
return roleIds.indexOf(tryingRoleId) !== -1
|
||||||
|
|
Loading…
Reference in New Issue