Skip to content

Commit

Permalink
fix: add group_add field to Service
Browse files Browse the repository at this point in the history
Closes #34
  • Loading branch information
trijpstra-fourlights authored and stephanbuys committed Dec 12, 2023
1 parent eb4190f commit 78364f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ pub struct Service {
pub extensions: HashMap<Extension, Value>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub extra_hosts: Vec<String>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub group_add: Vec<String>,
#[serde(default, skip_serializing_if = "std::ops::Not::not")]
pub tty: bool,
#[serde(default, skip_serializing_if = "SysCtls::is_empty")]
Expand Down

0 comments on commit 78364f4

Please sign in to comment.