Files
message-inbox-web-frontend-sdk/apps/web/app/api/bff/channels/[id]/messages/route.ts
T
2026-07-17 21:48:37 +05:30

24 lines
804 B
TypeScript

import { NextRequest, NextResponse } from "next/server";
import { getBackend } from "@/lib/backend";
export const dynamic = "force-dynamic";
type Params = { params: Promise<{ id: string }> };
export async function GET(_req: NextRequest, { params }: Params) {
const { id } = await params;
return NextResponse.json({ messages: await getBackend().channelMessages(id) });
}
export async function POST(req: NextRequest, { params }: Params) {
const { id } = await params;
const body = await req.json().catch(() => ({}));
const message = await getBackend().send(id, String(body.body ?? ""), {
parentId: body.parentId,
scheduledFor: body.scheduledFor,
attachments: body.attachments,
threadRootId: body.threadRootId,
});
return NextResponse.json({ message }, { status: 201 });
}