(parent, route /*, ids */ )
| 886 | } |
| 887 | |
| 888 | function several(parent, route /*, ids */ ) { |
| 889 | var collection = []; |
| 890 | collection[config.restangularFields.ids] = Array.prototype.splice.call(arguments, 2); |
| 891 | return restangularizeCollection(parent, collection, route, false); |
| 892 | } |
| 893 | |
| 894 | function oneUrl(parent, route, url) { |
| 895 | if (!route) { |
nothing calls this directly
no test coverage detected