monkey-front-core 0.0.352 → 0.0.353
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/core/services/auth/monkeyecx-auth-guard-role.service.mjs +5 -2
- package/fesm2015/monkey-front-core.mjs +4 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +4 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.353.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.352.tgz +0 -0
|
@@ -4123,6 +4123,9 @@ let MonkeyEcxAuthGuardByRole = class MonkeyEcxAuthGuardByRole {
|
|
|
4123
4123
|
}
|
|
4124
4124
|
static forRoles(roles, companyType, byExclusion) {
|
|
4125
4125
|
class RoleCheck {
|
|
4126
|
+
constructor() {
|
|
4127
|
+
// not to do
|
|
4128
|
+
}
|
|
4126
4129
|
async canActivate() {
|
|
4127
4130
|
return true;
|
|
4128
4131
|
}
|
|
@@ -4134,7 +4137,7 @@ let MonkeyEcxAuthGuardByRole = class MonkeyEcxAuthGuardByRole {
|
|
|
4134
4137
|
args: [{
|
|
4135
4138
|
providedIn: 'root'
|
|
4136
4139
|
}]
|
|
4137
|
-
}] });
|
|
4140
|
+
}], ctorParameters: function () { return []; } });
|
|
4138
4141
|
return RoleCheck;
|
|
4139
4142
|
}
|
|
4140
4143
|
};
|