import getLotComments from '../../database/getLotComments.js'; import updateLotComment from '../../database/updateLotComment.js'; export default async function handler(request, response) { const success = await updateLotComment(request.body, request.session.user); const lotComments = await getLotComments(request.body.lotId); response.json({ success, lotComments }); }