Files
openclaw/extensions/mattermost/src/config-surface.ts

9 lines
429 B
TypeScript

// Mattermost helper module supports config surface behavior.
import { buildChannelConfigSchema } from "openclaw/plugin-sdk/channel-config-schema";
import { MattermostConfigSchema } from "./config-schema-core.js";
import { mattermostChannelConfigUiHints } from "./config-ui-hints.js";
export const MattermostChannelConfigSchema = buildChannelConfigSchema(MattermostConfigSchema, {
uiHints: mattermostChannelConfigUiHints,
});