mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
36 lines
636 B
JavaScript
36 lines
636 B
JavaScript
/**
|
|
* 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);
|
|
|
|
},
|
|
|
|
|
|
/**
|
|
* Delete a movie
|
|
*
|
|
* @param {number} movieID The ID of the movie to delete
|
|
* @return {Promise}
|
|
*/
|
|
delete: function(movieID) {
|
|
return api("movies/delete", {
|
|
movieID: movieID
|
|
}, true);
|
|
}
|
|
|
|
} |