rs-restangular
Version:
Restful Resources service for Angular 2 apps
13 lines • 480 B
JavaScript
;
var RestangularOnePath = (function () {
function RestangularOnePath(endpoint, primaryKey) {
this.endpoint = endpoint;
this.primaryKey = primaryKey.toString();
}
RestangularOnePath.prototype.path = function () {
return [this.endpoint, this.primaryKey];
};
return RestangularOnePath;
}());
exports.RestangularOnePath = RestangularOnePath;
//# sourceMappingURL=/home/rodolfosilva/htdocs/outros/restangular/src/one-path.js.map