@live-change/access-control-service 0.8.60 → 0.8.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/access.js +3 -1
- package/package.json +3 -3
package/access.js
CHANGED
|
@@ -94,7 +94,9 @@ export default (definition) => {
|
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
async function getClientObjectsRoles(client, objects, ignorePublic) {
|
|
97
|
-
const objectsRoles = await Promise.all(
|
|
97
|
+
const objectsRoles = await Promise.all(
|
|
98
|
+
objects.map(obj => getClientObjectRoles(client, obj, ignorePublic))
|
|
99
|
+
)
|
|
98
100
|
const firstObjectRoles = objectsRoles.shift()
|
|
99
101
|
let roles = firstObjectRoles
|
|
100
102
|
for(const objectRoles of objectsRoles) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/access-control-service",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.62",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"url": "https://www.viamage.com/"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@live-change/framework": "^0.8.
|
|
24
|
+
"@live-change/framework": "^0.8.62"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "063d94e3e0a751ada8568b5b1913744c8879ea0e",
|
|
27
27
|
"type": "module"
|
|
28
28
|
}
|