sunrise-cms/handlers/burialSites-post/doAddBurialSiteComment.js

11 lines
446 B
JavaScript

import addBurialSiteComment from '../../database/addBurialSiteComment.js';
import getBurialSiteComments from '../../database/getBurialSiteComments.js';
export default async function handler(request, response) {
await addBurialSiteComment(request.body, request.session.user);
const burialSiteComments = await getBurialSiteComments(request.body.burialSiteId);
response.json({
success: true,
burialSiteComments
});
}