18 lines
379 B
TypeScript
18 lines
379 B
TypeScript
import type { Request, Response } from 'express'
|
|
|
|
import { getLotTypeById } from '../../helpers/functions.cache.js'
|
|
|
|
export default async function handler(
|
|
request: Request,
|
|
response: Response
|
|
): Promise<void> {
|
|
const lotType = (await getLotTypeById(
|
|
Number.parseInt(request.body.lotTypeId, 10)
|
|
))!
|
|
|
|
response.json({
|
|
lotTypeFields: lotType.lotTypeFields
|
|
})
|
|
}
|
|
|