11 lines
402 B
JavaScript
11 lines
402 B
JavaScript
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
|
|
});
|
|
}
|