Refactoring

This commit is contained in:
IDONTSUDO 2023-12-22 21:07:55 +03:00
parent 11ca9cdb5e
commit 7ff6165882
22 changed files with 172 additions and 327 deletions

View file

@ -16,12 +16,10 @@ export class ProjectInstancePresentation extends CrudController<
});
super.post(new CreateNewProjectInstanceScenario().call);
super.subRoutes = [
{
method: "POST",
subUrl: "upload",
fn: new UploadCadFileToProjectScenario(),
},
];
this.subRoutes.push({
method: "POST",
subUrl: "upload",
fn: new UploadCadFileToProjectScenario(),
});
}
}