- attivita

- gestione degli script sul server
 - creato websocket per interagire con gli script del server.
This commit is contained in:
Surya Paolo
2024-08-29 23:31:54 +02:00
parent 79e874e3e0
commit 8f4ff8ff9c
39 changed files with 1373 additions and 303 deletions

View File

@@ -2140,6 +2140,17 @@ export const useGlobalStore = defineStore('GlobalStore', {
} else {
return 'fas fa-home'
}
}
},
async execScript(paramquery: any) {
return Api.SendReq('/admin/exec', 'POST', paramquery)
.then((res) => {
return res.data
}).catch((error) => {
return false
})
},
}
})