Skip to content

Commit

Permalink
feat: add snap_name to request messages
Browse files Browse the repository at this point in the history
  • Loading branch information
d-loose committed Dec 17, 2024
1 parent 15b1c1a commit 5ccf6fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ service App {

message GetRatingRequest {
string snap_id = 1;
string snap_name = 2;
}

message GetRatingResponse {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ message ListMyVotesResponse {

message GetSnapVotesRequest {
string snap_id = 1;
string snap_name = 2;
}

message GetSnapVotesResponse {
Expand All @@ -45,4 +46,5 @@ message VoteRequest {
string snap_id = 1;
int32 snap_revision = 2;
bool vote_up = 3;
string snap_name = 4;
}

0 comments on commit 5ccf6fd

Please sign in to comment.