ComunicWeb/assets/js/components/movies/interface.js

23 lines
423 B
JavaScript
Raw Normal View History

2018-01-05 14:58:36 +00:00
/**
* Movies communication interface
*
* @author Pierre HUBERT
*/
ComunicWeb.components.movies.interface = {
/**
* Get the list of movies of the user from the server
*
* @param {function} callback What to do once we got a response from the server
*/
getList: function(callback){
apiURI = "movies/get_list";
params = {};
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
}
}