Skip to content

Commit 3f53adb

Browse files
committed
fix build
1 parent b4a04d1 commit 3f53adb

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

src/app/api/write/route.ts

+15-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
import { sql } from 'drizzle-orm';
2+
import { NextRequest } from 'next/server';
3+
14
import { comments } from '@/models/schema';
25
import { db } from '@/utils/db';
3-
import { sql } from 'drizzle-orm';
46

57
const insertQuery = db
68
.insert(comments)
@@ -10,11 +12,17 @@ const insertQuery = db
1012
})
1113
.prepare();
1214

13-
export async function POST() {
14-
const { lastInsertRowid } = await insertQuery.execute({
15-
author: Math.random().toString(36).substring(7),
16-
content: Math.random().toString(36).substring(7),
17-
});
15+
export async function POST(request: NextRequest) {
16+
const runTest = request.nextUrl.searchParams.get('test') === 'y';
17+
18+
if (runTest) {
19+
const { lastInsertRowid } = await insertQuery.execute({
20+
author: Math.random().toString(36).substring(7),
21+
content: Math.random().toString(36).substring(7),
22+
});
23+
24+
return new Response(lastInsertRowid.toString(), { status: 200 });
25+
}
1826

19-
return new Response(lastInsertRowid.toString(), { status: 200 });
27+
return new Response('No test run', { status: 200 });
2028
}

0 commit comments

Comments
 (0)