зеркало из https://github.com/microsoft/paris.git
Added error when no endpoint and no values defined.
This commit is contained in:
Родитель
e0ae533152
Коммит
abb78336f7
|
@ -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",
|
||||
|
|
Загрузка…
Ссылка в новой задаче