fix(template) perbaikan template generator module
continuous-integration/drone/tag Build is passing
Details
continuous-integration/drone/tag Build is passing
Details
parent
f86f86fe0c
commit
a126dd267c
|
@ -16,8 +16,6 @@ export class Create{{pascalCase name}}Manager extends BaseCreateManager<{{pascal
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
async generateConfig(): Promise<void> {}
|
|
||||||
|
|
||||||
get validateRelations(): validateRelations[] {
|
get validateRelations(): validateRelations[] {
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,6 @@ export class {{pascalCase name}}DataOrchestrator extends Base{{pascalCase orches
|
||||||
this.createManager.setData(data);
|
this.createManager.setData(data);
|
||||||
this.createManager.setService(this.serviceData, TABLE_NAME.{{constantCase name}});
|
this.createManager.setService(this.serviceData, TABLE_NAME.{{constantCase name}});
|
||||||
await this.createManager.execute();
|
await this.createManager.execute();
|
||||||
await this.createManager.generateConfig();
|
|
||||||
return this.createManager.getResult();
|
return this.createManager.getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue