19 lines
442 B
TypeScript
19 lines
442 B
TypeScript
import type { RequestHandler } from 'express'
|
|
|
|
import { updateLotTypeField } from '../../helpers/lotOccupancyDB/updateLotTypeField.js'
|
|
|
|
import { getLotTypes } from '../../helpers/functions.cache.js'
|
|
|
|
export const handler: RequestHandler = (request, response) => {
|
|
const success = updateLotTypeField(request.body, request.session)
|
|
|
|
const lotTypes = getLotTypes()
|
|
|
|
response.json({
|
|
success,
|
|
lotTypes
|
|
})
|
|
}
|
|
|
|
export default handler
|