Files
openclaw/extensions/slack/index.ts
T
Peter Steinberger 1e9a620a28 refactor(gateway): remove deferred channel load flag; 503 plugin routes until runtime ready (#117852)
* refactor(gateway): remove deferred channel load flag; 503 plugin routes until runtime ready

* test(agents): make setup middleware load intent explicit

* test(gateway): pin webhook startup routing outside SPA
2026-08-02 00:36:21 -07:00

33 lines
904 B
TypeScript

// Slack plugin entrypoint registers its OpenClaw integration.
import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
import { registerSlackPluginHttpRoutes } from "./http-routes-api.js";
export default defineBundledChannelEntry({
id: "slack",
name: "Slack",
description: "Slack channel plugin",
importMetaUrl: import.meta.url,
plugin: {
specifier: "./channel-plugin-api.js",
exportName: "slackPlugin",
},
secrets: {
specifier: "./secret-contract-api.js",
exportName: "channelSecrets",
},
runtime: {
specifier: "./runtime-setter-api.js",
exportName: "setSlackRuntime",
},
accountInspect: {
specifier: "./account-inspect-api.js",
exportName: "inspectSlackReadOnlyAccount",
},
registerFull: (api) => {
if (api.registrationMode !== "full") {
return;
}
registerSlackPluginHttpRoutes(api);
},
});