added settings endpoint

This commit was merged in pull request #60.
This commit is contained in:
victorAnumudu
2025-08-06 14:03:03 +01:00
parent 220e4952d5
commit 52e3553aaa
3 changed files with 206 additions and 6 deletions
+10
View File
@@ -150,6 +150,16 @@ export const completePWDReset = (reqData) => {
return postAuxEnd('/panel/auth/resetcomplete', postData, false)
}
// FUNCTION TO SUBMIT PAGE TAB SETTINGS
export const pageSettings = (reqData) => {
let postData = {
...reqData,
}
return postAuxEnd(`/panel/myproduct/settings`, postData, false)
}