Add a missing default value to docs (#3973)

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2024-01-09 12:20:52 +01:00 committed by GitHub
parent a0f9393c1f
commit 29ed067b26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,9 +9,12 @@ pub struct CallSettings {
pub mute_on_join: bool,
}
/// Configuration of voice calls in Zed.
#[derive(Clone, Default, Serialize, Deserialize, JsonSchema, Debug)]
pub struct CallSettingsContent {
/// Whether the microphone should be muted when joining a channel or a call.
///
/// Default: false
pub mute_on_join: Option<bool>,
}