We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acb8eb8 commit b7334a6Copy full SHA for b7334a6
src/Entity/EntityBase.ts
@@ -81,7 +81,7 @@ export abstract class EntityBase<T extends EntityBaseAttribute> {
81
//checking folder structure
82
//FilesValidator
83
let filesValidator=new FilesValidator(this._pathFolderSchema);
84
- let result = filesValidator.ValidateDirStructureBySchema(this.RootDir,this._fileNameSchemaDirStructure);
+ let result = filesValidator.ValidateFiles(this.RootDir,this._fileNameSchemaDirStructure);
85
const validationErrors=<Array<string>>result.returnObject;
86
this._validationErrors = validationErrors.slice();
87
//check if folder matches entity and id
0 commit comments