feat: private livekit nodes

This commit is contained in:
Zomatree
2025-06-05 14:14:19 +01:00
parent 45df5724b3
commit 3dbf3bb7a0
2 changed files with 17 additions and 10 deletions

View File

@@ -188,7 +188,11 @@ pub struct LiveKitNode {
pub lat: f64,
pub lon: f64,
pub key: String,
pub secret: String
pub secret: String,
// whether to hide the node in the nodes list
#[serde(default)]
pub private: bool,
}
#[derive(Deserialize, Debug, Clone)]