#6598 create useAcl composable #345

Merged
jorgep merged 10 commits from 6598-getUserAcl into dev 2024-06-11 07:32:47 +00:00
1 changed files with 8 additions and 9 deletions
Showing only changes of commit 12ff55a010 - Show all commits

View File

@ -1,5 +1,5 @@
import { useState } from './useState';
import axios from 'axios';
import { useState } from './useState';
export function useAcl() {
const state = useState();
@ -17,14 +17,13 @@ export function useAcl() {
}
function hasAny(model, property, accessType) {
const acls = acls[model];
if (acls) {
for (const prop of ['*', property]) {
const acl = acls[prop];
if (acl && (acl['*'] || acl[accessType])) return true;
}
}
return false;
const modelAcls = state.getAcls().value[model];
if (!modelAcls) return false;
return ['*', property].some(prop => {
const acl = modelAcls[prop];
return acl && (acl['*'] || acl[accessType]);
});
}
return {