mirror of https://github.com/openclaw/openclaw.git
21 lines
474 B
JavaScript
21 lines
474 B
JavaScript
import { bundledPluginRoot } from "./scripts/lib/bundled-plugin-paths.mjs";
|
|
|
|
export const messagingExtensionIds = [
|
|
"bluebubbles",
|
|
"googlechat",
|
|
"mattermost",
|
|
"nextcloud-talk",
|
|
"nostr",
|
|
"qqbot",
|
|
"synology-chat",
|
|
"tlon",
|
|
"twitch",
|
|
"voice-call",
|
|
];
|
|
|
|
export const messagingExtensionTestRoots = messagingExtensionIds.map((id) => bundledPluginRoot(id));
|
|
|
|
export function isMessagingExtensionRoot(root) {
|
|
return messagingExtensionTestRoots.includes(root);
|
|
}
|