Replace DB with Store in service/user (#321)

This commit is contained in:
zhaoyang
2022-01-28 19:03:34 +08:00
committed by GitHub
parent 8246d8f8a7
commit cd215a8392
17 changed files with 885 additions and 284 deletions

View File

@@ -230,10 +230,10 @@ message ResetPasswordResponse {}
// List all users. Returns a paged list of results
message ListRequest {
int32 offset = 1;
uint32 offset = 1;
// Maximum number of records to return. Default limit is 25.
// Maximum limit is 1000. Anything higher will return an error.
int32 limit = 2;
uint32 limit = 2;
}
message ListResponse {