first commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { NextRequest, NextResponse } from "next/server";
|
||||
import { getBackend } from "@/lib/backend";
|
||||
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
export async function POST(
|
||||
_req: NextRequest,
|
||||
{ params }: { params: Promise<{ id: string; messageId: string }> },
|
||||
) {
|
||||
const { id, messageId } = await params;
|
||||
const message = await getBackend().pin(id, messageId);
|
||||
if (!message) return NextResponse.json({ error: "not found" }, { status: 404 });
|
||||
return NextResponse.json({ message });
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
import { NextRequest, NextResponse } from "next/server";
|
||||
import { getBackend } from "@/lib/backend";
|
||||
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
export async function POST(
|
||||
req: NextRequest,
|
||||
{ params }: { params: Promise<{ id: string; messageId: string }> },
|
||||
) {
|
||||
const { id, messageId } = await params;
|
||||
const body = await req.json().catch(() => ({}));
|
||||
const message = await getBackend().react(id, messageId, String(body.emoji ?? "👍"));
|
||||
if (!message) return NextResponse.json({ error: "not found" }, { status: 404 });
|
||||
return NextResponse.json({ message });
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
import { NextRequest, NextResponse } from "next/server";
|
||||
import { getBackend } from "@/lib/backend";
|
||||
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
type Params = { params: Promise<{ id: string; messageId: string }> };
|
||||
|
||||
export async function PATCH(req: NextRequest, { params }: Params) {
|
||||
const { id, messageId } = await params;
|
||||
const body = await req.json().catch(() => ({}));
|
||||
const message = await getBackend().editMessage(id, messageId, String(body.body ?? ""));
|
||||
if (!message) return NextResponse.json({ error: "not found" }, { status: 404 });
|
||||
return NextResponse.json({ message });
|
||||
}
|
||||
|
||||
export async function DELETE(_req: NextRequest, { params }: Params) {
|
||||
const { id, messageId } = await params;
|
||||
const r = await getBackend().deleteMessage(id, messageId);
|
||||
return NextResponse.json(r);
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
import { NextRequest, NextResponse } from "next/server";
|
||||
import { getBackend } from "@/lib/backend";
|
||||
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
export async function POST(
|
||||
_req: NextRequest,
|
||||
{ params }: { params: Promise<{ id: string; messageId: string }> },
|
||||
) {
|
||||
const { id, messageId } = await params;
|
||||
const message = await getBackend().save(id, messageId);
|
||||
if (!message) return NextResponse.json({ error: "not found" }, { status: 404 });
|
||||
return NextResponse.json({ message });
|
||||
}
|
||||
Reference in New Issue
Block a user