mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
coordinatorproto: accountLimitsSet
This commit is contained in:
parent
dbff72a85b
commit
199dea2be5
1 changed files with 14 additions and 1 deletions
|
@ -41,6 +41,8 @@ service Coordinator {
|
|||
rpc AclAddRecord(AclAddRecordRequest) returns (AclAddRecordResponse);
|
||||
// AclGetRecords gets acl records
|
||||
rpc AclGetRecords(AclGetRecordsRequest) returns (AclGetRecordsResponse);
|
||||
|
||||
rpc AccountLimitsSet(AccountLimitsSetRequest) returns (AccountLimitsSetResponse);
|
||||
}
|
||||
|
||||
message SpaceSignRequest {
|
||||
|
@ -335,4 +337,15 @@ message AclGetRecordsRequest {
|
|||
// AclGetRecordsResponse contains list of marshaled consensusproto.RawRecordWithId
|
||||
message AclGetRecordsResponse {
|
||||
repeated bytes records = 1;
|
||||
}
|
||||
}
|
||||
|
||||
message AccountLimitsSetRequest {
|
||||
string identity = 1;
|
||||
string reason = 2;
|
||||
uint64 fileStorageLimitBytes = 3;
|
||||
uint32 spaceMembersRead = 4;
|
||||
uint32 spaceMembersWrite = 5;
|
||||
}
|
||||
|
||||
|
||||
message AccountLimitsSetResponse {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue