Channels: finish Feishu/Lark integration

This commit is contained in:
Josh Palmer
2026-02-03 14:27:39 -08:00
parent 2483f26c23
commit 0223416c61
32 changed files with 2814 additions and 143 deletions

View File

@@ -0,0 +1,5 @@
export function normalizeFeishuTarget(raw: string): string {
let normalized = raw.replace(/^(feishu|lark):/i, "").trim();
normalized = normalized.replace(/^(group|chat|user|dm):/i, "").trim();
return normalized;
}