18 lines
486 B
TypeScript
18 lines
486 B
TypeScript
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,
|
|
isNumericTelegramUserId,
|
|
normalizeTelegramAllowFromEntry,
|
|
};
|