Files
openclaw/extensions/whatsapp/src/command-policy.ts
2026-06-04 21:59:00 -04:00

9 lines
307 B
TypeScript

// Whatsapp plugin module implements command policy behavior.
import type { ChannelPlugin } from "openclaw/plugin-sdk/core";
export const whatsappCommandPolicy: NonNullable<ChannelPlugin["commands"]> = {
enforceOwnerForCommands: true,
preferSenderE164ForCommands: true,
skipWhenConfigEmpty: true,
};