File tree 1 file changed +15
-7
lines changed
1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change
1
+ import { sql } from 'drizzle-orm' ;
2
+ import { NextRequest } from 'next/server' ;
3
+
1
4
import { comments } from '@/models/schema' ;
2
5
import { db } from '@/utils/db' ;
3
- import { sql } from 'drizzle-orm' ;
4
6
5
7
const insertQuery = db
6
8
. insert ( comments )
@@ -10,11 +12,17 @@ const insertQuery = db
10
12
} )
11
13
. prepare ( ) ;
12
14
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
+ }
18
26
19
- return new Response ( lastInsertRowid . toString ( ) , { status : 200 } ) ;
27
+ return new Response ( 'No test run' , { status : 200 } ) ;
20
28
}
You can’t perform that action at this time.
0 commit comments