first-update
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import { NextResponse } from 'next/server';
|
||||
import { deleteQuestion } from '@/lib/db/questions';
|
||||
|
||||
// 删除单个问题
|
||||
export async function DELETE(request, { params }) {
|
||||
try {
|
||||
const { projectId, questionId } = params;
|
||||
|
||||
// 验证参数
|
||||
if (!projectId) {
|
||||
return NextResponse.json({ error: 'Project ID is required' }, { status: 400 });
|
||||
}
|
||||
|
||||
if (!questionId) {
|
||||
return NextResponse.json({ error: 'Question ID is required' }, { status: 400 });
|
||||
}
|
||||
|
||||
// 删除问题
|
||||
await deleteQuestion(questionId);
|
||||
|
||||
return NextResponse.json({ success: true, message: 'Delete successful' });
|
||||
} catch (error) {
|
||||
console.error('Delete failed:', String(error));
|
||||
return NextResponse.json({ error: error.message || 'Delete failed' }, { status: 500 });
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user