Paying using new card
This commit is contained in:
@@ -216,6 +216,7 @@ class usersService {
|
||||
return this.postAuxEnd("/sendmoneyfee", postData);
|
||||
}
|
||||
|
||||
// Start Credit for Cards
|
||||
getStartCredit(value) {
|
||||
var postData = {
|
||||
uid: localStorage.getItem("uid"),
|
||||
@@ -227,6 +228,7 @@ class usersService {
|
||||
return this.postAuxEnd("/startcredit", postData);
|
||||
}
|
||||
|
||||
// Paying using Previous Cards
|
||||
getPaidPrevCard(value) {
|
||||
var postData = {
|
||||
uid: localStorage.getItem("uid"),
|
||||
@@ -238,6 +240,18 @@ class usersService {
|
||||
return this.postAuxEnd("/payprevcard", postData);
|
||||
}
|
||||
|
||||
// Paying using New Card
|
||||
getPaidNewCard(value) {
|
||||
var postData = {
|
||||
uid: localStorage.getItem("uid"),
|
||||
member_id: localStorage.getItem("member_id"),
|
||||
sessionid: localStorage.getItem("session_token"),
|
||||
action: 11054,
|
||||
...value,
|
||||
};
|
||||
return this.postAuxEnd("/paynewcard", postData);
|
||||
}
|
||||
|
||||
getFamilySampleTasks() {
|
||||
var postData = {
|
||||
uid: localStorage.getItem("uid"),
|
||||
|
||||
Reference in New Issue
Block a user