tnx-shared 5.3.378 → 5.3.379

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.
@@ -30173,35 +30173,49 @@
30173
30173
  var result = [
30174
30174
  {
30175
30175
  path: '',
30176
- component: SplashComponentComponent,
30176
+ component: SplashComponentComponent
30177
30177
  },
30178
30178
  {
30179
30179
  path: 'dashboard',
30180
30180
  component: CommonDashboardComponent,
30181
+ canActivate: [],
30182
+ canActivateChild: []
30181
30183
  },
30182
30184
  {
30183
30185
  path: 'access-denied',
30184
30186
  component: AccessDeniedComponent,
30187
+ canActivate: [],
30188
+ canActivateChild: []
30185
30189
  },
30186
30190
  {
30187
30191
  path: 'universal-link',
30188
30192
  component: UniversalLinkProcessorComponent,
30193
+ canActivate: [],
30194
+ canActivateChild: []
30189
30195
  },
30190
30196
  {
30191
30197
  path: 'thong-bao',
30192
30198
  component: ThongBaoComponent,
30199
+ canActivate: [],
30200
+ canActivateChild: []
30193
30201
  },
30194
30202
  {
30195
30203
  path: 'my-drive',
30196
30204
  component: MyDriveComponent,
30205
+ canActivate: [],
30206
+ canActivateChild: []
30197
30207
  },
30198
30208
  {
30199
30209
  path: 'change-password',
30200
30210
  component: ChangePasswordComponent,
30211
+ canActivate: [],
30212
+ canActivateChild: []
30201
30213
  },
30202
30214
  {
30203
30215
  path: 'profile',
30204
30216
  component: ProfileComponent,
30217
+ canActivate: [],
30218
+ canActivateChild: []
30205
30219
  },
30206
30220
  ];
30207
30221
  result.forEach(function (item) {
@@ -39574,7 +39588,7 @@
39574
39588
  top.location.href = '/';
39575
39589
  }
39576
39590
  else {
39577
- top.location.href = '/access-denied';
39591
+ top.location.href = window['baseHref'] + '/access-denied';
39578
39592
  }
39579
39593
  resolve(false);
39580
39594
  }