- controllo della @ sull'username telegram (sugli Eventi)

- controllo email di test, se funzionante o no
This commit is contained in:
Surya Paolo
2025-07-29 12:54:40 +02:00
parent 85db3b4a61
commit 6013a624f6
11 changed files with 137 additions and 65 deletions

View File

@@ -2250,7 +2250,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
console.log(usertosend);
return Api.SendReq('/news/testemail', 'POST', usertosend).then((res) => {
return res;
return res?.data?.code === serv_constants.RIS_CODE_OK;
});
},
@@ -2408,7 +2408,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
return Api.SendReq('/site/load', 'POST', paramquery)
.then((res) => {
// console.log('datastat', res)
this.datastat = res.data.datastat;
this.datastat = res.data?.datastat;
return this.datastat;
})
.catch((error) => {