mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 04:15:48 -06:00
9 lines
307 B
TypeScript
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,
|
|
};
|