Get the IDs of personns who sent comments.

This commit is contained in:
Pierre 2018-01-19 06:58:11 +01:00
parent 02843ae55d
commit e905e4968c

View File

@ -6,6 +6,27 @@
ComunicWeb.components.comments.utils = {
/**
* Get the IDs of the users who posted comments
*
* @param {Object} infos Informations about the comments
* @return {Object} List of users ID
*/
get_users_id: function(infos){
//Process the list of users
var users = [];
var i;
for(i in infos){
//If the user isn't already present in the list, add it
if(!users.includes(infos[i].userID))
users.push(infos[i].userID);
}
return users;
}
}