1
0
mirror of https://github.com/haiwen/ccnet-server.git synced 2025-09-13 05:25:26 +00:00

Merge pull request #22 from haiwen/list_child_groups_users

Support listing child groups and members.
This commit is contained in:
Jiaqiang Xu
2018-05-09 10:13:51 +08:00
committed by GitHub
6 changed files with 139 additions and 1 deletions

View File

@@ -227,12 +227,18 @@ ccnet_rpc_get_top_groups (GError **error);
GList *
ccnet_rpc_get_child_groups (int group_id, GError **error);
GList *
ccnet_rpc_get_descendants_groups(int group_id, GError **error);
GObject *
ccnet_rpc_get_group (int group_id, GError **error);
GList *
ccnet_rpc_get_group_members (int group_id, GError **error);
GList *
ccnet_rpc_get_members_with_prefix(int group_id, const char *prefix, GError **error);
int
ccnet_rpc_check_group_staff (int group_id, const char *user_name,
GError **error);