mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-26 13:59:23 +00:00
Get the IDs of personns who sent comments.
This commit is contained in:
parent
02843ae55d
commit
e905e4968c
@ -6,6 +6,27 @@
|
|||||||
|
|
||||||
ComunicWeb.components.comments.utils = {
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user