adds topic field to the cis_profil_update table and changes the layout of the editProfil Modul

This commit is contained in:
SimonGschnell
2024-01-09 15:51:50 +01:00
parent 5b597dbc31
commit b1d8a2f5a4
7 changed files with 211 additions and 169 deletions
+3 -2
View File
@@ -3,10 +3,11 @@ export default {
//! API Calls for Profil Views
editProfil: function(payload) {
editProfil: function(topic, payload) {
const url = FHC_JS_DATA_STORAGE_OBJECT.app_root + FHC_JS_DATA_STORAGE_OBJECT.ci_router+
`/Cis/Profil/editProfil`;
return axios.post(url,payload);
return axios.post(url,{topic, payload});
},
getEditProfil: function() {