mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-26 09:04:28 +00:00
allows user to make profil changes requests and to oversee his requested changes
This commit is contained in:
@@ -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});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user