sunrise-cms/routes/lots.ts

91 lines
1.9 KiB
TypeScript

import { Router } from "express";
import * as permissionHandlers from "../handlers/permissions.js";
import handler_search from "../handlers/lots-get/search.js";
import handler_doSearchLots from "../handlers/lots-post/doSearchLots.js";
import handler_view from "../handlers/lots-get/view.js";
import handler_next from "../handlers/lots-get/next.js";
import handler_previous from "../handlers/lots-get/previous.js";
import handler_new from "../handlers/lots-get/new.js";
import handler_edit from "../handlers/lots-get/edit.js";
import handler_doCreateLot from "../handlers/lots-post/doCreateLot.js";
import handler_doUpdateLot from "../handlers/lots-post/doUpdateLot.js";
import handler_doAddLotComment from "../handlers/lots-post/doAddLotComment.js";
import handler_doUpdateLotComment from "../handlers/lots-post/doUpdateLotComment.js";
import handler_doDeleteLotComment from "../handlers/lots-post/doDeleteLotComment.js";
export const router = Router();
/*
* Lot Search
*/
router.get("/",
handler_search);
router.post("/doSearchLots",
handler_doSearchLots);
/*
* Lot View / Edit
*/
router.get("/new",
permissionHandlers.updateGetHandler,
handler_new);
router.get("/:lotId",
handler_view);
router.get("/:lotId/next",
handler_next);
router.get("/:lotId/previous",
handler_previous);
router.get("/:lotId/edit",
permissionHandlers.updateGetHandler,
handler_edit);
router.post("/doCreateLot",
permissionHandlers.updatePostHandler,
handler_doCreateLot);
router.post("/doUpdateLot",
permissionHandlers.updatePostHandler,
handler_doUpdateLot);
router.post("/doAddLotComment",
permissionHandlers.updatePostHandler,
handler_doAddLotComment);
router.post("/doUpdateLotComment",
permissionHandlers.updatePostHandler,
handler_doUpdateLotComment);
router.post("/doDeleteLotComment",
permissionHandlers.updatePostHandler,
handler_doDeleteLotComment);
export default router;