typo
This commit is contained in:
parent
678c7d9502
commit
9f0dfb5517
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ export class RoleService implements OnApplicationShutdown {
|
||||||
if (p2.length > 0) return aggregate(p2.map(policy => policy.useDefault ? basePolicies[name] : policy.value));
|
if (p2.length > 0) return aggregate(p2.map(policy => policy.useDefault ? basePolicies[name] : policy.value));
|
||||||
|
|
||||||
const p1 = policies.filter(policy => policy.priority === 1);
|
const p1 = policies.filter(policy => policy.priority === 1);
|
||||||
if (p1.length > 0) return aggregate(p2.map(policy => policy.useDefault ? basePolicies[name] : policy.value));
|
if (p1.length > 0) return aggregate(p1.map(policy => policy.useDefault ? basePolicies[name] : policy.value));
|
||||||
|
|
||||||
return aggregate(policies.map(policy => policy.useDefault ? basePolicies[name] : policy.value));
|
return aggregate(policies.map(policy => policy.useDefault ? basePolicies[name] : policy.value));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue