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

11 lines
428 B
JavaScript

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