Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDavenport committed May 16, 2024
1 parent a72e289 commit ea64b33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gamercade_interface/proto/author.proto
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ message AdjustAuthorRequest {
sfixed64 user_id = 2;

optional string title = 3;
optional sint32 permission_level_id = 4;
optional int32 permission_level_id = 4;
}

message AdjustAuthorResponse {
Expand Down
2 changes: 1 addition & 1 deletion gamercade_interface/src/output/author.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub struct AdjustAuthorRequest {
pub user_id: i64,
#[prost(string, optional, tag = "3")]
pub title: ::core::option::Option<::prost::alloc::string::String>,
#[prost(sint32, optional, tag = "4")]
#[prost(int32, optional, tag = "4")]
pub permission_level_id: ::core::option::Option<i32>,
}
#[derive(serde::Serialize, serde::Deserialize)]
Expand Down

0 comments on commit ea64b33

Please sign in to comment.