Skip to content

Commit

Permalink
feat(frontier):add pagination to ListOrganizations (#368)
Browse files Browse the repository at this point in the history
* add pagination to ListOrganizations

* update description for page_size &  total_pages

* remove total_pages, add count in ListAllOrganizationsResponse message

---------

Co-authored-by: Aman Prasad <[email protected]>
  • Loading branch information
AmanGIT07 and Aman Prasad authored Aug 22, 2024
1 parent bc60d55 commit ae8d062
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions raystack/frontier/v1beta1/admin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -453,10 +453,27 @@ message ListGroupsResponse {
message ListAllOrganizationsRequest {
string user_id = 1 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {description: "The user id to filter by."}];
string state = 2 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {description: "The state to filter by. It can be enabled or disabled."}];
int32 page_size = 3 [
(validate.rules).int32 = {
gte: 1,
ignore_empty: true,
},
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {description: "The maximum number of organizations to return per page. The default is 50."}
];
int32 page_num = 4 [
(validate.rules).int32 = {
gte: 1,
ignore_empty: true,
},
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {description: "The page number to return. The default is 1."}
];
}

message ListAllOrganizationsResponse {
repeated Organization organizations = 1;
int32 count = 2[
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {description: "Total number of records present"}
];
}

message ListProjectsRequest {
Expand Down

0 comments on commit ae8d062

Please sign in to comment.