Add Revit initial import planning
This commit is contained in:
parent
c634570018
commit
c9e5fdd876
10 changed files with 345 additions and 4 deletions
|
|
@ -38,6 +38,7 @@ import {
|
|||
import {
|
||||
getExternalCsvConfiguration,
|
||||
previewExternalCsv,
|
||||
planExternalInitialImport,
|
||||
updateExternalCsvConfiguration,
|
||||
} from "../controllers/external-csv.controller.js";
|
||||
|
||||
|
|
@ -52,6 +53,10 @@ projectRouter.post("/:projectId/import", importProjectTransfer);
|
|||
projectRouter.get("/:projectId/external-csv/configuration", getExternalCsvConfiguration);
|
||||
projectRouter.put("/:projectId/external-csv/configuration", updateExternalCsvConfiguration);
|
||||
projectRouter.post("/:projectId/external-csv/preview", previewExternalCsv);
|
||||
projectRouter.post(
|
||||
"/:projectId/external-csv/initial-import/plan",
|
||||
planExternalInitialImport
|
||||
);
|
||||
projectRouter.get("/:projectId/history", getProjectHistory);
|
||||
projectRouter.get("/:projectId/history/revisions", listProjectRevisions);
|
||||
projectRouter.post("/:projectId/commands", executeProjectCommand);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue