Skip to content

Commit

Permalink
feat: Add report flag is_process_before_launch.
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwinBetanc0urt committed Aug 23, 2024
1 parent f5883f2 commit ad98748
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/models/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ pub struct Process {
pub show_help: Option<String>,
// Report
pub is_report: Option<bool>,
pub is_process_before_launch: Option<bool>,
pub report_view_id: Option<i32>,
pub print_format_id: Option<i32>,
// Linked
Expand Down Expand Up @@ -124,7 +125,7 @@ pub struct ProcessParameters {

impl Default for Process {
fn default() -> Self {
Self {
Self {
uuid: None,
internal_id: None,
id: None,
Expand All @@ -136,6 +137,7 @@ impl Default for Process {
show_help: None,
// Report
is_report: None,
is_process_before_launch: None,
print_format_id: None,
report_view_id: None,
// Linked
Expand Down

0 comments on commit ad98748

Please sign in to comment.