mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
25 lines
437 B
JavaScript
25 lines
437 B
JavaScript
/**
|
|
* Likes API interface
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
ComunicWeb.components.like.interface = {
|
|
|
|
/**
|
|
* Update like status
|
|
*
|
|
* @param {String} type The type of component
|
|
* @param {Integer} id The ID of the element
|
|
* @param {Boolean} like New like status
|
|
*/
|
|
update: function(type, id, like){
|
|
//Perform an API request through websocket
|
|
return ws("likes/update", {
|
|
type: type,
|
|
id: id,
|
|
like: like
|
|
});
|
|
}
|
|
|
|
} |