@spytecgps/nova-orm 1.4.78 → 1.4.79
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.
|
@@ -57,20 +57,10 @@ class createUserAuthorizedBoundarySecurityViewV21684483705000 {
|
|
|
57
57
|
AND NOT EXISTS (
|
|
58
58
|
SELECT 1
|
|
59
59
|
FROM entityTag ut
|
|
60
|
-
JOIN entityTag rt
|
|
61
|
-
ON rt.tagId = ut.tagId
|
|
62
|
-
AND rt.entityType = 'Boundary'
|
|
63
|
-
AND rt.isSecurityGroup = 1
|
|
64
|
-
JOIN boundary b
|
|
65
|
-
ON b.id = rt.entityId
|
|
66
60
|
JOIN userSecurityRole usr
|
|
67
|
-
|
|
68
|
-
AND usr.clientId = b.clientId
|
|
61
|
+
ON usr.userId = ut.userId
|
|
69
62
|
WHERE ut.entityType = 'User'
|
|
70
|
-
|
|
71
|
-
AND b.clientId = uab.clientId
|
|
72
|
-
AND b.id = uab.boundaryId
|
|
73
|
-
AND ut.userId = uab.userId
|
|
63
|
+
AND ut.isSecurityGroup = 1
|
|
74
64
|
)
|
|
75
65
|
);
|
|
76
66
|
`);
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var _1684483704434AddLowerCaseIndex = require('../1684483704434-addLowerCaseIndex.js');
|
|
4
3
|
var _1684483706000CreateUserAuthorizedDeviceSecurityViewV2 = require('../1684483706000-createUserAuthorizedDeviceSecurityViewV2.js');
|
|
4
|
+
var _1684483704434AddLowerCaseIndex = require('../1684483704434-addLowerCaseIndex.js');
|
|
5
5
|
var _1684483705000CreateUserAuthorizedBoundarySecurityViewV2 = require('../1684483705000-createUserAuthorizedBoundarySecurityViewV2.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.addLowerCaseIndex1684483704434 = _1684483704434AddLowerCaseIndex.addLowerCaseIndex1684483704434;
|
|
10
9
|
exports.createUserAuthorizedDeviceSecurityViewV21684483706000 = _1684483706000CreateUserAuthorizedDeviceSecurityViewV2.createUserAuthorizedDeviceSecurityViewV21684483706000;
|
|
10
|
+
exports.addLowerCaseIndex1684483704434 = _1684483704434AddLowerCaseIndex.addLowerCaseIndex1684483704434;
|
|
11
11
|
exports.createUserAuthorizedBoundarySecurityViewV21684483705000 = _1684483705000CreateUserAuthorizedBoundarySecurityViewV2.createUserAuthorizedBoundarySecurityViewV21684483705000;
|