subscribe api added

This commit is contained in:
victorAnumudu
2024-12-31 10:25:51 +01:00
parent 46621f60c0
commit 1bcd26e602
2 changed files with 53 additions and 2 deletions
+9
View File
@@ -66,6 +66,15 @@ export const verifyEmail = (reqData) => {
return postAuxEnd('/panel/auth/register/verify', postData, false)
}
// FUNCTION TO SUBSCRIBE
export const subscribe = (reqData) => {
let postData = {
...reqData
}
return postAuxEnd('/panel/myproduct/subscription', postData, false)
// return getAuxEnd('/panel/myproduct/subscription')
}
// FUNCTION TO RESET USER PASSWORD
export const recoverPWD = (reqData) => {