openclaw/src/security/audit-channel.runtime.ts

18 lines
486 B
TypeScript
Raw Normal View History

import { readChannelAllowFromStore } from "../pairing/pairing-store.js";
import {
isNumericTelegramUserId,
normalizeTelegramAllowFromEntry,
} from "../plugin-sdk/telegram.js";
import {
isDiscordMutableAllowEntry,
isZalouserMutableGroupEntry,
} from "./mutable-allowlist-detectors.js";
export const auditChannelRuntime = {
readChannelAllowFromStore,
isDiscordMutableAllowEntry,
isZalouserMutableGroupEntry,
2026-03-15 23:30:04 -07:00
isNumericTelegramUserId,
normalizeTelegramAllowFromEntry,
};