Changed the status and moved the payload to the users-services

This commit is contained in:
2023-06-19 21:47:40 +01:00
parent e31ee86299
commit 3c87a67581
2 changed files with 11 additions and 13 deletions
+8 -1
View File
@@ -444,7 +444,14 @@ class usersService {
//END POINT CALL FOR SENDING REFERRAL MESSAGE
sendReferralMsg(postData) {
return this.postAuxEnd("/sendreferral", postData);
var reqData = {
uid: localStorage.getItem("uid"),
member_id: localStorage.getItem("member_id"),
sessionid: localStorage.getItem("session_token"),
action: 11032,
...postData
}
return this.postAuxEnd("/sendreferral", reqData);
}
StartResetPassword(reqData) {