19 lines
545 B
TypeScript
19 lines
545 B
TypeScript
import type { RequestHandler } from "express";
|
|
|
|
import { addWorkOrderComment } from "../../helpers/lotOccupancyDB/addWorkOrderComment.js";
|
|
|
|
import { getWorkOrderComments } from "../../helpers/lotOccupancyDB/getWorkOrderComments.js";
|
|
|
|
export const handler: RequestHandler = async (request, response) => {
|
|
addWorkOrderComment(request.body, request.session);
|
|
|
|
const workOrderComments = getWorkOrderComments(request.body.workOrderId);
|
|
|
|
response.json({
|
|
success: true,
|
|
workOrderComments
|
|
});
|
|
};
|
|
|
|
export default handler;
|