Aisle and Simulation Product API and socket Completed

This commit is contained in:
2025-06-05 16:40:33 +05:30
parent 18965b8a20
commit d53c66de77
32 changed files with 1792 additions and 529 deletions

View File

@@ -9,26 +9,26 @@ import {
ZoneDataController,
} from "../../v1Controllers/builderController/v1zoneController.ts";
const v1Zone = express.Router();
const V1Zone = express.Router();
v1Zone.post("/zones", tokenValidator, CreateZoneController);
v1Zone.patch("/zones/delete", tokenValidator, DeleteZoneController);
V1Zone.post("/zones", tokenValidator, CreateZoneController);
V1Zone.patch("/zones/delete", tokenValidator, DeleteZoneController);
v1Zone.get(
V1Zone.get(
"/zones/visualization/:projectId",
tokenValidator,
VizZoneController
);
v1Zone.get(
V1Zone.get(
"/zones/:projectId/:zoneUuid",
tokenValidator,
ZoneDataController
);
v1Zone.get(
V1Zone.get(
"/zones/panel/:projectId/:zoneUuid",
tokenValidator,
SingleZonePanelController
);
v1Zone.get("/zones/:projectId", tokenValidator, GetZoneController);
export default v1Zone;
V1Zone.get("/zones/:projectId", tokenValidator, GetZoneController);
export default V1Zone;