From e3ec0fc36c61eae666f1a45f64df43f98df18d95 Mon Sep 17 00:00:00 2001 From: Simon Gschnell Date: Tue, 28 Nov 2023 14:55:42 +0100 Subject: [PATCH] upadtes api calls --- public/js/apps/api/userdata.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/public/js/apps/api/userdata.js b/public/js/apps/api/userdata.js index 9550171c3..7f5b32704 100644 --- a/public/js/apps/api/userdata.js +++ b/public/js/apps/api/userdata.js @@ -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); + }, + + + }; \ No newline at end of file