upadtes api calls

This commit is contained in:
Simon Gschnell
2023-11-28 14:55:42 +01:00
parent 2df956ef20
commit e3ec0fc36c
+21
View File
@@ -27,5 +27,26 @@ export default {
return axios.get(url);
},
indexProfilInformaion: function() {
const url = FHC_JS_DATA_STORAGE_OBJECT.app_root + FHC_JS_DATA_STORAGE_OBJECT.ci_router+
"/Cis/Profil/indexProfilInformaion";
return axios.get(url);
},
mitarbeiterProfil: function() {
const url = FHC_JS_DATA_STORAGE_OBJECT.app_root + FHC_JS_DATA_STORAGE_OBJECT.ci_router+
"/Cis/Profil/mitarbeiterProfil";
return axios.get(url);
},
studentProfil: function() {
const url = FHC_JS_DATA_STORAGE_OBJECT.app_root + FHC_JS_DATA_STORAGE_OBJECT.ci_router+
"/Cis/Profil/studentProfil";
return axios.get(url);
},
};