resource ask question implemented
This commit was merged in pull request #351.
This commit is contained in:
@@ -411,6 +411,19 @@ class usersService {
|
||||
};
|
||||
return this.postAuxEnd("/resources", postData);
|
||||
}
|
||||
|
||||
// ASK QUESTION RESOURCES
|
||||
askResourcesResult(reqData) {
|
||||
var postData = {
|
||||
uuid: localStorage.getItem("uid"),
|
||||
member_id: localStorage.getItem("member_id"),
|
||||
sessionid: localStorage.getItem("session_token"),
|
||||
action: 22010,
|
||||
...reqData,
|
||||
};
|
||||
return this.postAuxEnd("/askresources", postData);
|
||||
}
|
||||
|
||||
getMyWiatingJobList() {
|
||||
// jobs you have shown inteterest in
|
||||
var postData = {
|
||||
@@ -991,6 +1004,18 @@ class usersService {
|
||||
return this.postAuxEnd("/payremcard", postData);
|
||||
}
|
||||
|
||||
// FUNCTION TO GET SINGLE BLOG ITEM
|
||||
getSingleBlogData(reqData) {
|
||||
var postData = {
|
||||
uid: localStorage.getItem("uid"),
|
||||
member_id: localStorage.getItem("member_id"),
|
||||
sessionid: localStorage.getItem("session_token"),
|
||||
limit: 4,
|
||||
...reqData,
|
||||
};
|
||||
return this.postAuxEnd("/blogdata", postData);
|
||||
}
|
||||
|
||||
/*
|
||||
- 20:27:30.118 FLOG_MAX [757411]: REQ_STRING(username)
|
||||
- 20:27:30.118 FLOG_MAX [757411]: REQ_STRING(password)
|
||||
|
||||
Reference in New Issue
Block a user