added settings values endpoint

This commit is contained in:
victorAnumudu
2025-08-07 21:41:36 +01:00
parent b84eac1299
commit 6028e4c617
6 changed files with 153 additions and 239 deletions
+7
View File
@@ -158,6 +158,13 @@ export const pageSettings = (reqData) => {
return postAuxEnd(`/panel/myproduct/settings`, postData, false)
}
// FUNCTION TO GET SETTINGS DATA
export const getSettingsData = (reqData) => {
let postData = {
...reqData,
}
return postAuxEnd(`/panel/myproduct/settings/values`, postData, false)
}