fix(mattermost): surface reactions support

This commit is contained in:
Sebastian
2026-02-17 09:30:35 -05:00
parent 2547b782d7
commit dd0b789669
4 changed files with 28 additions and 1 deletions

View File

@@ -37,6 +37,12 @@ describe("mattermostPlugin", () => {
});
});
describe("capabilities", () => {
it("declares reactions support", () => {
expect(mattermostPlugin.capabilities?.reactions).toBe(true);
});
});
describe("messageActions", () => {
it("exposes react when mattermost is configured", () => {
const cfg: OpenClawConfig = {

View File

@@ -167,6 +167,7 @@ export const mattermostPlugin: ChannelPlugin<ResolvedMattermostAccount> = {
},
capabilities: {
chatTypes: ["direct", "channel", "group", "thread"],
reactions: true,
threads: true,
media: true,
},