Added error when no endpoint and no values defined.

This commit is contained in:
Yossi Kolesnicov 2017-11-20 10:43:44 +02:00
Родитель e0ae533152
Коммит abb78336f7
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -14,6 +14,8 @@ export class ModelEntity extends EntityConfigBase{
super(config, entityConstructor);
this.loadAll = config.loadAll === true;
if (!this.endpoint && !this.values)
throw new Error(`Can't create entity ${this.entityConstructor.name}, no endpoint or values defined.`);
}
}

Просмотреть файл

@ -56,7 +56,7 @@
"systemjs": ">=0.20.12",
"typescript": "^2.4.2",
"zone.js": ">=0.8.7",
"run-sequence": "^2.2.0"
"run-sequence": "^2.2.0"
},
"peerDependencies": {
"rxjs": ">=5.2.0",