@acorex/connectivity 19.3.2 → 19.3.3-next.1
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.
@@ -5106,7 +5106,6 @@ class MockTenantLoader {
|
|
5106
5106
|
name: 'demo-tenant',
|
5107
5107
|
title: 'DEMO Tenant',
|
5108
5108
|
};
|
5109
|
-
debugger;
|
5110
5109
|
if (context.user?.name == 'root') {
|
5111
5110
|
return of([demo_tenant, acorex_tenant]).pipe(delay(500));
|
5112
5111
|
}
|
@@ -5137,7 +5136,6 @@ class MockApplicationLoader {
|
|
5137
5136
|
version: '1.0.0',
|
5138
5137
|
editionName: 'Standard',
|
5139
5138
|
};
|
5140
|
-
debugger;
|
5141
5139
|
if (context.user?.name == 'root' && context.tenant?.id == '99') {
|
5142
5140
|
return of([demo_app, console_app]).pipe(delay(500));
|
5143
5141
|
}
|
@@ -5156,7 +5154,9 @@ class MockPermissionLoader {
|
|
5156
5154
|
constructor() {
|
5157
5155
|
this.userPermissions = ['forms:management', 'forms:categories:edit', 'forms:templates:edit'];
|
5158
5156
|
this.adminPermissions = [...this.userPermissions, ...['admin', 'demo.admin.settings']];
|
5159
|
-
this.rootPermissions = [...this.adminPermissions, ...['platform', 'platform.reports'
|
5157
|
+
this.rootPermissions = [...this.adminPermissions, ...['platform', 'platform.reports',
|
5158
|
+
'document-management:manage', 'document-management:document-type:manage',
|
5159
|
+
'document-management:driver:manage']];
|
5160
5160
|
}
|
5161
5161
|
getList(context) {
|
5162
5162
|
if (context.user?.name == 'root') {
|
@@ -5623,7 +5623,6 @@ class AXCMockModule {
|
|
5623
5623
|
statusText: 'Seed Data ...',
|
5624
5624
|
priority: 200,
|
5625
5625
|
run: async () => {
|
5626
|
-
debugger;
|
5627
5626
|
await seederService.seed();
|
5628
5627
|
}
|
5629
5628
|
});
|