1
0
mirror of https://github.com/haiwen/ccnet-server.git synced 2025-09-04 06:14:38 +00:00

Support listing child groups and users.

This commit is contained in:
cuihaikuo
2018-05-08 17:50:21 +08:00
parent c095959cce
commit d8937ae5ad
6 changed files with 125 additions and 0 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);