Skip to content

Commit

Permalink
Fix json response casing
Browse files Browse the repository at this point in the history
  • Loading branch information
Etheroit committed Jul 10, 2024
1 parent f20800b commit 79fdefc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mantle/rbx_api/src/places/models.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::models::{AssetId, SocialSlotType};
pub const DEFAULT_PLACE_NAME: &str = "Untitled Game";

#[derive(Deserialize)]
#[serde(rename_all = "PascalCase")]
#[serde(rename_all = "camelCase")]
pub struct CreatePlaceResponse {
pub place_id: AssetId,
}
Expand Down

0 comments on commit 79fdefc

Please sign in to comment.