All the channel approval

This commit is contained in:
2026-04-12 13:47:27 +02:00
parent 1edb5785e3
commit dbfa7560cf
9 changed files with 329 additions and 3 deletions

View File

@@ -67,6 +67,8 @@ export async function PATCH(
if (body.displayName !== undefined)
specPatch.displayName = body.displayName;
if (body.agentName !== undefined) specPatch.agentName = body.agentName;
if (body.channelUsers !== undefined)
specPatch.channelUsers = body.channelUsers;
const updated = await patchTenantSpec(name, specPatch);
return NextResponse.json(updated);