feat: add docs API endpoint
This commit is contained in:
20
apps/web/src/app/api/docs/[id]/route.ts
Normal file
20
apps/web/src/app/api/docs/[id]/route.ts
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
import { NextResponse } from "next/server";
|
||||||
|
import { getRedis } from "@/lib/redis";
|
||||||
|
|
||||||
|
export async function GET(
|
||||||
|
_request: Request,
|
||||||
|
{ params }: { params: Promise<{ id: string }> }
|
||||||
|
) {
|
||||||
|
const { id } = await params;
|
||||||
|
const redis = getRedis();
|
||||||
|
|
||||||
|
const result = await redis.get(`codeboard:result:${id}`);
|
||||||
|
if (!result) {
|
||||||
|
return NextResponse.json(
|
||||||
|
{ error: "Documentation not found" },
|
||||||
|
{ status: 404 }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return NextResponse.json(JSON.parse(result));
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user