fix(mattermost): preserve threaded default and docs

This commit is contained in:
Chummy 2026-02-18 17:41:43 +08:00
parent 58120b1c69
commit 1bfd50bce9
5 changed files with 26 additions and 23 deletions

View file

@ -1499,8 +1499,8 @@ pub struct MattermostConfig {
pub channel_id: Option<String>,
#[serde(default)]
pub allowed_users: Vec<String>,
/// When true, replies thread on the original post. When false (default),
/// replies go to the channel root.
/// When true (default), replies thread on the original post.
/// When false, replies go to the channel root.
#[serde(default)]
pub thread_replies: Option<bool>,
}