22 lines
489 B
TypeScript
22 lines
489 B
TypeScript
import type { RequestHandler } from "express";
|
|
|
|
import { deleteLotType } from "../../helpers/lotOccupancyDB/deleteLotType.js";
|
|
|
|
import { getLotTypes } from "../../helpers/functions.cache.js";
|
|
|
|
export const handler: RequestHandler = async (request, response) => {
|
|
const success = deleteLotType(
|
|
request.body.lotTypeId,
|
|
request.session
|
|
);
|
|
|
|
const lotTypes = getLotTypes();
|
|
|
|
response.json({
|
|
success,
|
|
lotTypes
|
|
});
|
|
};
|
|
|
|
export default handler;
|