added common practice endpoint

This commit was merged in pull request #68.
This commit is contained in:
victorAnumudu
2025-08-13 19:08:35 +01:00
parent 2d141b529c
commit 9cfb4651af
2 changed files with 131 additions and 91 deletions
+9 -1
View File
@@ -171,7 +171,7 @@ export const completeProfile = (reqData) => {
let postData = {
...reqData,
}
return postAuxEnd(`/panel/`, postData, false)
return postAuxEnd(`/panel/account/startprofile`, postData, false)
}
// FUNCTION TO COMPLETE PROFILE
@@ -182,6 +182,14 @@ export const getSubscriptions = (reqData) => {
return postAuxEnd(`/panel/subscription/products`, postData, false)
}
// FUNCTION TO GET COMMON PRACTICE
export const getCommonPractice = (reqData) => {
let postData = {
...reqData,
}
return postAuxEnd(`/panel/common/practice`, postData, false)
}