14 lines
506 B
JavaScript
14 lines
506 B
JavaScript
import { moveRecordUp, moveRecordUpToTop } from '../../helpers/lotOccupancyDB/moveRecord.js';
|
|
import { getLotTypes } from '../../helpers/functions.cache.js';
|
|
export const handler = (request, response) => {
|
|
const success = request.body.moveToEnd === '1'
|
|
? moveRecordUpToTop('LotTypes', request.body.lotTypeId)
|
|
: moveRecordUp('LotTypes', request.body.lotTypeId);
|
|
const lotTypes = getLotTypes();
|
|
response.json({
|
|
success,
|
|
lotTypes
|
|
});
|
|
};
|
|
export default handler;
|