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