refactor(agents): split tools + PI subscribe

This commit is contained in:
Peter Steinberger
2026-01-14 05:39:59 +00:00
parent ac613b6632
commit e2f8909982
80 changed files with 2798 additions and 2503 deletions

View File

@@ -264,7 +264,7 @@ export async function handleDiscordGuildAction(
name: name ?? undefined,
topic: topic ?? undefined,
position: position ?? undefined,
parentId: parentId === undefined ? undefined : parentId,
parentId,
nsfw,
rateLimitPerUser: rateLimitPerUser ?? undefined,
});
@@ -293,7 +293,7 @@ export async function handleDiscordGuildAction(
await moveChannelDiscord({
guildId,
channelId,
parentId: parentId === undefined ? undefined : parentId,
parentId,
position: position ?? undefined,
});
return jsonResult({ ok: true });