mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 20:49:21 +00:00
28 lines
502 B
JavaScript
28 lines
502 B
JavaScript
/**
|
|
* Posts communication interface with the API
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
ComunicWeb.components.posts.interface = {
|
|
|
|
/**
|
|
* Get user posts
|
|
*
|
|
* @param {int} userID The ID of the target user
|
|
* @param {function} callback Callback function
|
|
*/
|
|
get_user: function(userID, callback){
|
|
|
|
//Prepare the API request
|
|
var APIuri = "posts/get_user";
|
|
var params = {
|
|
userID: userID
|
|
};
|
|
|
|
//Make the request
|
|
ComunicWeb.common.api.makeAPIrequest(APIuri, params, true, callback);
|
|
|
|
},
|
|
|
|
} |