rez_core 3.1.121 → 3.1.122

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "3.1.121",
3
+ "version": "3.1.122",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -144,7 +144,7 @@ export class ModuleAccessRepository {
144
144
 
145
145
  const wbsCodes = mainModules.map((mod) => mod.wbs_code);
146
146
 
147
- const allModules = await this.moduleRepo
147
+ let allModules = await this.moduleRepo
148
148
  .createQueryBuilder('module')
149
149
  .where(
150
150
  wbsCodes
@@ -155,8 +155,9 @@ export class ModuleAccessRepository {
155
155
  .andWhere('module.appcode = :appcode', { appcode })
156
156
  .andWhere('module.module_code != :excludedCode', { excludedCode: 'all_organization_adm_org' })
157
157
  .getMany();
158
-
159
158
 
159
+ allModules = allModules.filter((mod) => mod.module_code!= 'all_organization_adm_org');
160
+
160
161
  const moduleCodes = allModules.map((m) => m.module_code);
161
162
 
162
163
  const allActions = await this.moduleActionRepo.find({
@@ -1,5 +0,0 @@
1
- {
2
- "recommendations": [
3
- "dbaeumer.vscode-eslint"
4
- ]
5
- }