Skip to content

Commit 396567f

Browse files
authored
Merge pull request #876 from balena-io/deduplicate-namespace-relationships
Deduplicate namespace relationships
2 parents c278dcc + 74eb91d commit 396567f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/sbvr-api/permissions.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,11 @@ const namespaceRelationships = (
307307
relationships: Relationship,
308308
alias: string,
309309
): void => {
310-
_.forEach(relationships, (relationship: Relationship, key) => {
310+
for (const [key, relationship] of Object.entries(
311+
relationships as RelationshipInternalNode,
312+
)) {
311313
if (key === '$') {
312-
return;
314+
continue;
313315
}
314316

315317
let mapping = (relationship as RelationshipLeafNode).$;
@@ -323,7 +325,7 @@ const namespaceRelationships = (
323325
};
324326
}
325327
namespaceRelationships(relationship, alias);
326-
});
328+
}
327329
};
328330

329331
type PermissionLookup = Dictionary<true | string[]>;

src/sbvr-api/translations.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ const namespaceRelationships = (
102102
relationships as RelationshipInternalNode,
103103
)) {
104104
if (key === '$') {
105-
return;
105+
continue;
106106
}
107107

108108
let mapping = (relationship as RelationshipLeafNode).$;

0 commit comments

Comments
 (0)