13 lines
428 B
JavaScript
13 lines
428 B
JavaScript
import { addLotStatus } from "../../helpers/lotOccupancyDB/addLotStatus.js";
|
|
import { getLotStatuses } from "../../helpers/functions.cache.js";
|
|
export const handler = async (request, response) => {
|
|
const lotStatusId = addLotStatus(request.body, request.session);
|
|
const lotStatuses = getLotStatuses();
|
|
response.json({
|
|
success: true,
|
|
lotStatusId,
|
|
lotStatuses
|
|
});
|
|
};
|
|
export default handler;
|