Files
Moltbot/src
Stefan Galescu 7b40d1b261 feat(slack): add dm-specific replyToMode configuration (#1442)
Adds support for separate replyToMode settings for DMs vs channels:

- Add channels.slack.dm.replyToMode for DM-specific threading
- Keep channels.slack.replyToMode as default for channels
- Add resolveSlackReplyToMode helper to centralize logic
- Pass chatType through threading resolution chain

Usage:
```json5
{
  channels: {
    slack: {
      replyToMode: "off",     // channels
      dm: {
        replyToMode: "all"    // DMs always thread
      }
    }
  }
}
```

When dm.replyToMode is set, DMs use that mode; channels use the
top-level replyToMode. Backward compatible when not configured.
2026-01-23 05:13:23 +00:00
..
2026-01-18 08:54:00 +00:00
2026-01-23 04:47:01 +00:00
2026-01-21 01:14:24 +00:00
2026-01-21 23:05:11 +00:00
2026-01-23 02:22:02 +00:00
2026-01-21 05:34:53 +00:00
2026-01-23 00:49:40 +00:00
2026-01-21 03:47:50 +00:00
2026-01-18 08:45:29 +00:00
2026-01-20 13:52:59 +00:00
2026-01-23 04:32:23 +00:00
2026-01-19 23:41:06 +00:00
2026-01-21 01:58:47 +00:00
2026-01-18 19:34:21 +00:00
2026-01-14 15:02:19 +00:00
2026-01-18 03:55:14 +00:00