allows user to make profil changes requests and to oversee his requested changes

This commit is contained in:
SimonGschnell
2024-01-15 15:15:16 +01:00
parent d3a3ebacfc
commit e881abe904
8 changed files with 653 additions and 297 deletions
+9 -2
View File
@@ -3,9 +3,16 @@ export default {
//! API Calls for Profil Views
editProfil: function(topic, payload) {
insertProfilRequest: function(topic, payload) {
const url = FHC_JS_DATA_STORAGE_OBJECT.app_root + FHC_JS_DATA_STORAGE_OBJECT.ci_router+
`/Cis/Profil/editProfil`;
`/Cis/Profil/insertProfilRequest`;
return axios.post(url,{topic, payload});
},
updateProfilRequest: function(topic, payload) {
const url = FHC_JS_DATA_STORAGE_OBJECT.app_root + FHC_JS_DATA_STORAGE_OBJECT.ci_router+
`/Cis/Profil/updateProfilRequest`;
return axios.post(url,{topic, payload});
},