29 lines
710 B
TypeScript
29 lines
710 B
TypeScript
/* eslint-disable @typescript-eslint/indent */
|
|
|
|
import type { RequestHandler } from 'express'
|
|
|
|
import {
|
|
moveRecordDown,
|
|
moveRecordDownToBottom
|
|
} from '../../helpers/lotOccupancyDB/moveRecord.js'
|
|
import { getLotOccupantTypes } from '../../helpers/functions.cache.js'
|
|
|
|
export const handler: RequestHandler = (request, response) => {
|
|
const success =
|
|
request.body.moveToEnd === '1'
|
|
? moveRecordDownToBottom(
|
|
'LotOccupantTypes',
|
|
request.body.lotOccupantTypeId
|
|
)
|
|
: moveRecordDown('LotOccupantTypes', request.body.lotOccupantTypeId)
|
|
|
|
const lotOccupantTypes = getLotOccupantTypes()
|
|
|
|
response.json({
|
|
success,
|
|
lotOccupantTypes
|
|
})
|
|
}
|
|
|
|
export default handler
|