sunrise-cms/helpers/lotOccupancyDB/moveLotTypeUp.js

14 lines
463 B
JavaScript

import { clearLotTypesCache } from "../functions.cache.js";
import { moveRecordUp, moveRecordUpToTop } from "./moveRecord.js";
export function moveLotTypeUp(lotTypeId) {
const success = moveRecordUp("LotTypes", lotTypeId);
clearLotTypesCache();
return success;
}
export function moveLotTypeUpToTop(lotTypeId) {
const success = moveRecordUpToTop("LotTypes", lotTypeId);
clearLotTypesCache();
return success;
}
export default moveLotTypeUp;