sunrise-cms/handlers/admin-post/doAddLotType.ts

27 lines
550 B
TypeScript

import type { Request, Response } from 'express'
import { addRecord } from '../../database/addRecord.js'
import { getLotTypes } from '../../helpers/functions.cache.js'
export async function handler(
request: Request,
response: Response
): Promise<void> {
const lotTypeId = await addRecord(
'LotTypes',
request.body.lotType,
request.body.orderNumber ?? -1,
request.session.user as User
)
const lotTypes = await getLotTypes()
response.json({
success: true,
lotTypeId,
lotTypes
})
}
export default handler