Skip to content

Commit

Permalink
Add optional param to get_character_industry_jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Celeo committed Jan 20, 2024
1 parent 55f27c0 commit ac4691a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rfesi"
version = "0.38.0"
version = "0.39.0"
authors = ["Celeo <[email protected]>"]
edition = "2021"
description = "Rust API for EVE Online's ESI"
Expand Down
3 changes: 2 additions & 1 deletion src/groups/industry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ impl<'a> IndustryGroup<'a> {
"get_characters_character_id_industry_jobs",
RequestType::Authenticated,
Vec<IndustryJob>,
(character_id: i32) => "{character_id}"
(character_id: i32) => "{character_id}";
Optional(include_completed: bool) => "include_completed"
);
}

0 comments on commit ac4691a

Please sign in to comment.