@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.
- package/esm2020/components/navbar/navbar.component.mjs +4 -4
- package/esm2020/lib/app.component.mjs +2 -2
- package/fesm2015/esfaenza-core-components.mjs +3 -3
- package/fesm2015/esfaenza-core-components.mjs.map +1 -1
- package/fesm2015/esfaenza-core.mjs +2 -2
- package/fesm2015/esfaenza-core.mjs.map +1 -1
- package/fesm2020/esfaenza-core-components.mjs +3 -3
- package/fesm2020/esfaenza-core-components.mjs.map +1 -1
- package/fesm2020/esfaenza-core.mjs +2 -2
- package/fesm2020/esfaenza-core.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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
|
|
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(
|
|
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(
|
|
644
|
+
this.http.get(GET_Cache_ClearAllCaches).subscribe(_ => {
|
|
645
645
|
this.msgExts.simpleSuccess(this.lc.loc("Cache Ripulita"));
|
|
646
646
|
});
|
|
647
647
|
}
|