Skip to content

Commit

Permalink
fix: make change filters optional
Browse files Browse the repository at this point in the history
  • Loading branch information
getinnocuous committed Oct 29, 2024
1 parent 905dc0c commit 6cf3c9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions changes.proto
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ message GetAppSummariesResponse {

message ListHomeChangesRequest {
PaginationRequest pagination = 1;
ChangeFiltersRequest filters = 2;
optional ChangeFiltersRequest filters = 2;
}

message ChangeFiltersRequest {
Expand All @@ -278,7 +278,7 @@ message ChangeFiltersRequest {
repeated Risk.Severity risks = 3;
repeated string authors = 4;
repeated ChangeStatus statuses = 5;
SortOrder sortOrder = 6;
optional SortOrder sortOrder = 6;
}

message ListHomeChangesResponse {
Expand Down

0 comments on commit 6cf3c9f

Please sign in to comment.