Skip to content

Commit

Permalink
chore(guardian): add filter by created_by (#95)
Browse files Browse the repository at this point in the history
* chore(guardian): add created_by filter in ListAppeals and ListApprovals

* chore(guardian): add created_by filter in ListApprovals
  • Loading branch information
rahmatrhd authored Feb 2, 2022
1 parent 5827849 commit 88b4ec2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions odpf/guardian/v1beta1/guardian.proto
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ message ListAppealsRequest {
repeated string resource_types = 6;
repeated string resource_urns = 7;
repeated string order_by = 8;
string created_by = 9;
}

message ListAppealsResponse {
Expand Down Expand Up @@ -334,6 +335,7 @@ message CreateAppealResponse {
message ListUserApprovalsRequest {
repeated string statuses = 2;
repeated string order_by = 3;
string account_id = 4;
}

message ListUserApprovalsResponse {
Expand All @@ -344,6 +346,7 @@ message ListApprovalsRequest {
string account_id = 1;
repeated string statuses = 2;
repeated string order_by = 3;
string created_by = 4;
}

message ListApprovalsResponse {
Expand Down

0 comments on commit 88b4ec2

Please sign in to comment.