Can return the URL and the description of a group to the API.

This commit is contained in:
Pierre HUBERT
2018-07-15 18:55:00 +02:00
parent b1e01dbb09
commit 91943a49ab
3 changed files with 38 additions and 5 deletions

View File

@ -621,6 +621,8 @@ class GroupsController {
$data = self::GroupInfoToAPI($info);
$data["time_create"] = $info->get_time_create();
$data["description"] = $info->get_description();
$data["url"] = $info->get_url();
return $data;
}