mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 04:15:17 +00:00
Display the list of groups of a user
This commit is contained in:
@ -22,6 +22,18 @@ ComunicWeb.components.groups.interface = {
|
||||
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* Get the list of groups of the user
|
||||
*
|
||||
* @param {Function} callback
|
||||
*/
|
||||
getListUser: function(callback){
|
||||
//Perform a request over the API
|
||||
var apiURI = "groups/get_my_list";
|
||||
var params = {};
|
||||
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* Get information about a group
|
||||
*
|
||||
|
Reference in New Issue
Block a user