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

19 lines
476 B
TypeScript

import type { RequestHandler } from "express";
import { moveLotTypeFieldDown } from "../../helpers/lotOccupancyDB/moveLotTypeFieldDown.js";
import { getLotTypes } from "../../helpers/functions.cache.js";
export const handler: RequestHandler = async (request, response) => {
const success = moveLotTypeFieldDown(request.body.lotTypeFieldId);
const lotTypes = getLotTypes();
response.json({
success,
lotTypes
});
};
export default handler;