13 lines
455 B
JavaScript
13 lines
455 B
JavaScript
import { addRecord } from "../../helpers/lotOccupancyDB/addRecord.js";
|
|
import { getLotTypes } from "../../helpers/functions.cache.js";
|
|
export const handler = async (request, response) => {
|
|
const lotTypeId = addRecord("LotTypes", request.body.lotType, request.body.orderNumber || -1, request.session);
|
|
const lotTypes = getLotTypes();
|
|
response.json({
|
|
success: true,
|
|
lotTypeId,
|
|
lotTypes
|
|
});
|
|
};
|
|
export default handler;
|