1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-09-13 13:51:53 +00:00

Fix the bug that can't sync subdir in virtual repos.

This commit is contained in:
ly1217
2019-02-24 21:32:46 -08:00
parent 0547e9b664
commit 17d74c48bb
5 changed files with 326 additions and 37 deletions

View File

@@ -58,6 +58,16 @@ seaf_share_manager_list_repo_shared_group (SeafShareManager *mgr,
const char *repo_id,
GError **error);
GHashTable *
seaf_share_manager_get_shared_dirs_to_user (SeafShareManager *mgr,
const char *orig_repo_id,
const char *to_email);
GHashTable *
seaf_share_manager_get_shared_dirs_to_group (SeafShareManager *mgr,
const char *orig_repo_id,
GList *groups);
int
seaf_share_manager_remove_share (SeafShareManager *mgr, const char *repo_id,
const char *from_email, const char *to_email);