@indigina/kendo 2.0.17 → 2.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2642,8 +2642,8 @@ class EntityService {
|
|
|
2642
2642
|
getPage(state, urlParams) {
|
|
2643
2643
|
return this.httpService.get(applyUrlParams(this.endpoints.query(state), urlParams));
|
|
2644
2644
|
}
|
|
2645
|
-
get(id, urlParams) {
|
|
2646
|
-
return this.httpService.get(applyUrlParams(this.endpoints.entityPath(id), urlParams));
|
|
2645
|
+
get(id, urlParams, options) {
|
|
2646
|
+
return this.httpService.get(applyUrlParams(this.endpoints.entityPath(id), urlParams), options);
|
|
2647
2647
|
}
|
|
2648
2648
|
delete(id, urlParams) {
|
|
2649
2649
|
return this.httpService.delete(applyUrlParams(this.endpoints.entityPath(id), urlParams));
|