Merge branch 'master' of https://gitlab.chiefsoft.net/WrenchBoard/Users-Wrench into complete-reset-password

This commit is contained in:
Ebube
2023-05-03 23:09:13 +01:00
23 changed files with 446 additions and 192 deletions
+12
View File
@@ -279,6 +279,18 @@ class usersService {
return this.postAuxEnd("/loadprofile", postData);
}
//END POINT CALL FOR ACCOUNT TOP
startTopUp(post){
var postData = {
uid: localStorage.getItem("uid"),
member_id: localStorage.getItem("member_id"),
sessionid: localStorage.getItem("session_token"),
action: 11062,
...post
};
return this.postAuxEnd("/starttopup", postData);
}
//END POINT CALL FOR SENDING REFERRAL MESSAGE
sendReferralMsg(postData){
return this.postAuxEnd("/sendreferral", postData);