13 lines
606 B
JavaScript
13 lines
606 B
JavaScript
import { moveRecordDown, moveRecordDownToBottom } from '../../database/moveRecord.js';
|
|
import { getIntermentContainerTypes } from '../../helpers/functions.cache.js';
|
|
export default function handler(request, response) {
|
|
const success = request.body.moveToEnd === '1'
|
|
? moveRecordDownToBottom('IntermentContainerTypes', request.body.intermentContainerTypeId)
|
|
: moveRecordDown('IntermentContainerTypes', request.body.intermentContainerTypeId);
|
|
const intermentContainerTypes = getIntermentContainerTypes();
|
|
response.json({
|
|
success,
|
|
intermentContainerTypes
|
|
});
|
|
}
|