@esfaenza/core 15.2.50 → 15.2.52

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.
@@ -526,7 +526,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
526
526
  // Angular
527
527
  // Chiamate ai Repository
528
528
  const GET_Jace_GetActiveJaceModules = "/api/Jace/GetActiveJaceModules";
529
- const GET_Adm_ClearAllCaches = "/api/Adm/ClearAllCaches";
529
+ const GET_Cache_ClearAllCaches = "/api/Cache/ClearAllCaches";
530
530
  class Navbar extends ReactiveComponent {
531
531
  constructor(prefsService, cacheService, globalSearchService, MessageDef, notifications, msgExts, lc, http, cdr, _state, sr, router, cjrService, extensionComponents) {
532
532
  super();
@@ -633,7 +633,7 @@ class Navbar extends ReactiveComponent {
633
633
  this.msgExts.simpleSuccess(this.lc.loc("Cache Ripulita"));
634
634
  }
635
635
  clearCacheServer() {
636
- this.http.get(GET_Adm_ClearAllCaches).subscribe(_ => {
636
+ this.http.get(GET_Cache_ClearAllCaches).subscribe(_ => {
637
637
  this.msgExts.simpleSuccess(this.lc.loc("Cache Ripulita"));
638
638
  });
639
639
  }
@@ -641,7 +641,7 @@ class Navbar extends ReactiveComponent {
641
641
  this.cacheService.clear().subscribe();
642
642
  this.http.resetHttpUntimedCacheStorage();
643
643
  this.http.resetHttpTimedCacheStorage();
644
- this.http.get(GET_Adm_ClearAllCaches).subscribe(_ => {
644
+ this.http.get(GET_Cache_ClearAllCaches).subscribe(_ => {
645
645
  this.msgExts.simpleSuccess(this.lc.loc("Cache Ripulita"));
646
646
  });
647
647
  }