Skip to content

Commit

Permalink
Fix casing
Browse files Browse the repository at this point in the history
  • Loading branch information
frasermolyneux committed Mar 31, 2024
1 parent 5a604af commit 2f72c69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Repository.openapi+json.json
Original file line number Diff line number Diff line change
Expand Up @@ -1782,7 +1782,7 @@
}
}
},
"/user-profile/by-xtremeidiots-id/{xtremeidiotsId}": {
"/user-profile/by-xtremeidiots-id/{xtremeIdiotsId}": {
"get": {
"tags": [
"UserProfile"
Expand Down
2 changes: 1 addition & 1 deletion src/repository-webapi/Controllers/UserProfileController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async Task<ApiResponseDto<UserProfileDto>> IUserProfileApi.GetUserProfileByIdent
}

[HttpGet]
[Route("user-profile/by-xtremeidiots-id/{xtremeidiotsId}")]
[Route("user-profile/by-xtremeidiots-id/{xtremeIdiotsId}")]
public async Task<IActionResult> GetUserProfileByXtremeIdiotsId(string xtremeIdiotsId)
{
var response = await ((IUserProfileApi)this).GetUserProfileByXtremeIdiotsId(xtremeIdiotsId);
Expand Down

0 comments on commit 2f72c69

Please sign in to comment.