diff --git a/extensions/mattermost/src/types.ts b/extensions/mattermost/src/types.ts index 4b047819d..7501cca3f 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 = {