cosette/server/api/comment.post.js

12 lines
293 B
JavaScript
Raw Normal View History

2022-08-12 18:23:03 +02:00
import { addComment } from '../controller'
import { useBody } from 'h3'
export default defineEventHandler(async (event) => {
try {
const body = await useBody(event)
addComment(body)
return { success: true }
} catch (e) {
return { success: false, reason: e.message }
}
})