Can force the request to get multiple groups.

This commit is contained in:
Pierre HUBERT
2018-09-02 14:14:10 +02:00
parent 1c1dbe8454
commit e8df43351f
2 changed files with 6 additions and 4 deletions

View File

@ -167,7 +167,8 @@ function getInfoGroup(id, callback){
*
* @param {Array} IDs The IDs of the groups to get information about
* @param {Function} callback Callback to call once we have information about the group
* @param {Boolean} force TRUE to force the request (ignore cache)
*/
function getInfoMultipleGroups(IDs, callback){
ComunicWeb.components.groups.info.getInfoMultiple(IDs, callback);
function getInfoMultipleGroups(IDs, callback, force){
ComunicWeb.components.groups.info.getInfoMultiple(IDs, callback, force);
}