mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
24 lines
888 B
TypeScript
24 lines
888 B
TypeScript
import type { OpenClawPluginApi } from "openclaw/plugin-sdk/mattermost";
|
|
import { emptyPluginConfigSchema } from "openclaw/plugin-sdk/mattermost";
|
|
import { mattermostPlugin } from "./src/channel.js";
|
|
import { getSlashCommandState, registerSlashCommandRoute } from "./src/mattermost/slash-state.js";
|
|
import { setMattermostRuntime } from "./src/runtime.js";
|
|
|
|
const plugin = {
|
|
id: "mattermost",
|
|
name: "Mattermost",
|
|
description: "Mattermost channel plugin",
|
|
configSchema: emptyPluginConfigSchema(),
|
|
register(api: OpenClawPluginApi) {
|
|
setMattermostRuntime(api.runtime);
|
|
api.registerChannel({ plugin: mattermostPlugin });
|
|
|
|
// Register the HTTP route for slash command callbacks.
|
|
// The actual command registration with MM happens in the monitor
|
|
// after the bot connects and we know the team ID.
|
|
registerSlashCommandRoute(api);
|
|
},
|
|
};
|
|
|
|
export default plugin;
|