We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8043b88 commit 3afed83Copy full SHA for 3afed83
backend/libs/radcam_manager/src/web/routes/v1/cockpit.rs
@@ -43,8 +43,8 @@ pub struct CockpitAction {
43
pub name: String,
44
#[serde(flatten)]
45
pub action_type: CockpitActionType,
46
- // /// Version of this Action
47
- // pub version: String,
+ /// Version of this Action
+ pub version: String,
48
}
49
50
#[derive(Debug, Serialize, Clone)]
@@ -187,7 +187,7 @@ fn actions(cameras: &Cameras) -> Vec<CockpitAction> {
187
})
188
.to_string(),
189
}),
190
- // version: env!("CARGO_PKG_VERSION").to_string(),
+ version: env!("CARGO_PKG_VERSION").to_string(),
191
}]
192
193
.collect()
0 commit comments