mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-12 08:00:42 +00:00
8 lines
245 B
TypeScript
8 lines
245 B
TypeScript
import type { ChannelPlugin } from "openclaw/plugin-sdk/core";
|
|
|
|
export const whatsappCommandPolicy: NonNullable<ChannelPlugin["commands"]> = {
|
|
enforceOwnerForCommands: true,
|
|
preferSenderE164ForCommands: true,
|
|
skipWhenConfigEmpty: true,
|
|
};
|