@resolveio/client-lib-core 1.3.13 → 1.3.15
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/esm2020/lib/auth/auth-guard.service.mjs +7 -1
- package/fesm2015/resolveio-client-lib-core.mjs +6 -0
- package/fesm2015/resolveio-client-lib-core.mjs.map +1 -1
- package/fesm2020/resolveio-client-lib-core.mjs +6 -0
- package/fesm2020/resolveio-client-lib-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5547,6 +5547,9 @@ class AuthGuard {
|
|
|
5547
5547
|
}
|
|
5548
5548
|
resolve(false);
|
|
5549
5549
|
}
|
|
5550
|
+
else {
|
|
5551
|
+
resolve(true);
|
|
5552
|
+
}
|
|
5550
5553
|
}
|
|
5551
5554
|
else {
|
|
5552
5555
|
if (!this.isLinkPartialRoute(partialView) && !user.roles.groups.some(a => a.views.some(b => b === partialView))) {
|
|
@@ -5617,6 +5620,9 @@ class AuthGuard {
|
|
|
5617
5620
|
}
|
|
5618
5621
|
resolve(false);
|
|
5619
5622
|
}
|
|
5623
|
+
else {
|
|
5624
|
+
resolve(true);
|
|
5625
|
+
}
|
|
5620
5626
|
}
|
|
5621
5627
|
else {
|
|
5622
5628
|
if (!this.isLinkPartialRoute(partialView) && !user.roles.groups.some(a => a.views.some(b => b === partialView))) {
|