mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
41 lines
753 B
JavaScript
41 lines
753 B
JavaScript
/**
|
|
* Notifications interface
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
ComunicWeb.components.notifications.interface = {
|
|
|
|
/**
|
|
* Get the number of unread notifications
|
|
*
|
|
* @param {function} callback
|
|
*/
|
|
getNbUnreads: function(callback){
|
|
|
|
//Perform API request
|
|
var apiURI = "notifications/count_unread";
|
|
var params = {};
|
|
|
|
//Perform the request
|
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
|
|
|
|
},
|
|
|
|
/**
|
|
* Get the list of unread notifications
|
|
*
|
|
* @param {function} callback
|
|
*/
|
|
get_list_unread: function(callback){
|
|
|
|
//Perform API request
|
|
var apiURI = "notifications/get_list_unread";
|
|
var params = {};
|
|
|
|
//Perform the request
|
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
|
|
|
|
},
|
|
|
|
} |