- Cloudflare e configurazione dominio DNS (host, host_test, host_ip, ecc...)

This commit is contained in:
Surya Paolo
2024-09-09 21:49:31 +02:00
parent e9ac281125
commit 16ddb8095e
39 changed files with 438 additions and 64 deletions

View File

@@ -182,6 +182,11 @@ export const useGlobalStore = defineStore('GlobalStore', {
enableRegMultiChoice: false,
enableTokenExpired: false,
enabledRegNeedTelegram: false,
enableGoods: false,
enableServices: false,
enableActivities: false,
enableHosps: false,
enableEvents: false,
enableDebugOn: false,
showButtHome: false,
showViewGroups: false,
@@ -2032,6 +2037,10 @@ export const useGlobalStore = defineStore('GlobalStore', {
return await this.DeleteRec({ table: 'myelems', id: myelem._id }).then((ris) => {
if (ris) {
this.myelems = this.myelems.filter((rec) => rec._id !== myelem._id)
// Aggiorna anche tutto il sito...
this.loadSite()
tools.showPositiveNotif($q, t('db.deletedrecord'))
} else {
tools.showNegativeNotif($q, t('db.recdelfailed'))
@@ -2058,6 +2067,10 @@ export const useGlobalStore = defineStore('GlobalStore', {
return await this.saveTable(mydata)
.then((ris) => {
if (ris) {
// Aggiorna anche tutto il sito...
this.loadSite()
tools.showPositiveNotif($q, t('db.recupdated'))
} else {
tools.showNegativeNotif($q, t('db.recfailed'))