8032-devToTest_2440 #751

Merged
alexm merged 319 commits from 8032-devToTest_2440 into test 2024-09-24 10:05:33 +00:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit dcc2f4dfde - Show all commits

View File

@ -16,10 +16,11 @@ export function useAcl() {
state.setAcls(acls);
}
function hasAny(model, prop, accessType) {
function hasAny(model, props = [], accessType) {
const acls = state.getAcls().value[model];
Array.isArray(props) || (props = [props]);
if (acls)
return ['*', prop].some((key) => {
return ['*', ...props].some((key) => {
const acl = acls[key];
return acl && (acl['*'] || acl[accessType]);
});