1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-09-19 18:16:25 +00:00

[RPC] Add 'delta' parameter to check_quota RPC.

This commit is contained in:
Jiaqiang Xu
2016-09-21 10:57:29 +08:00
parent aafc3af1d4
commit 29b82e62d6
7 changed files with 17 additions and 11 deletions

View File

@@ -391,10 +391,11 @@ seafile_set_org_user_quota (SearpcClient *client,
int
seafile_check_quota (SearpcClient *client,
const char *repo_id,
gint64 delta,
GError **error)
{
return searpc_client_call__int (client, "check_quota", error,
1, "string", repo_id);
2, "string", repo_id, "int64", delta);
}
int