From 2fa9ddebdba578bfcc1718304a2a9fef704b2915 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 22:59:53 +0000 Subject: [PATCH] fix(mattermost): add actions config typing --- extensions/mattermost/src/types.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/extensions/mattermost/src/types.ts b/extensions/mattermost/src/types.ts index 4b047819da..7501cca3f3 100644 --- a/extensions/mattermost/src/types.ts +++ b/extensions/mattermost/src/types.ts @@ -44,6 +44,11 @@ export type MattermostAccountConfig = { blockStreamingCoalesce?: BlockStreamingCoalesceConfig; /** Outbound response prefix override for this channel/account. */ responsePrefix?: string; + /** Action toggles for this account. */ + actions?: { + /** Enable message reaction actions. Default: true. */ + reactions?: boolean; + }; }; export type MattermostConfig = {