Skip to content

Commit

Permalink
Update web/src/controller/organization_controller.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Jim Hodapp <[email protected]>
  • Loading branch information
calebbourg and jhodapp committed Dec 5, 2023
1 parent 440b051 commit 7224d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/controller/organization_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ impl OrganizationController {
/// http://localhost:4000/organizations/<id>
pub async fn read(
State(app_state): State<AppState>,
Path(id): Path<i32>,
Path(id): Path<Id>,
) -> Result<impl IntoResponse, Error> {
debug!("GET Organization by id: {}", id);

Expand Down

0 comments on commit 7224d33

Please sign in to comment.