mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-25 00:24:35 +00:00
adds insertProfilRequest to the new ProfilUpdate FhcAPIController
This commit is contained in:
@@ -75,16 +75,16 @@ export default {
|
||||
|
||||
//TODO post request
|
||||
insertProfilRequest: function (topic, payload, fileID = null) {
|
||||
const url =
|
||||
|
||||
return this.$fhcApi.post(
|
||||
FHC_JS_DATA_STORAGE_OBJECT.app_root +
|
||||
FHC_JS_DATA_STORAGE_OBJECT.ci_router +
|
||||
`/Cis/ProfilUpdate/insertProfilRequest`;
|
||||
|
||||
return axios.post(url, {
|
||||
topic,
|
||||
payload,
|
||||
...(fileID ? { fileID: fileID } : {}),
|
||||
});
|
||||
"/api/frontend/v1/ProfilUpdate/insertProfilRequest",
|
||||
{
|
||||
topic,
|
||||
payload,
|
||||
...(fileID ? { fileID } : {}),
|
||||
});
|
||||
},
|
||||
|
||||
//TODO post request
|
||||
|
||||
Reference in New Issue
Block a user