12 lines
438 B
JavaScript
12 lines
438 B
JavaScript
import { updateLotOccupantType } from '../../helpers/lotOccupancyDB/updateLotOccupantType.js';
|
|
import { getLotOccupantTypes } from '../../helpers/functions.cache.js';
|
|
export const handler = (request, response) => {
|
|
const success = updateLotOccupantType(request.body, request.session);
|
|
const lotOccupantTypes = getLotOccupantTypes();
|
|
response.json({
|
|
success,
|
|
lotOccupantTypes
|
|
});
|
|
};
|
|
export default handler;
|