(parent, route, url)
| 892 | } |
| 893 | |
| 894 | function oneUrl(parent, route, url) { |
| 895 | if (!route) { |
| 896 | throw new Error('Route is mandatory when creating new Restangular objects.'); |
| 897 | } |
| 898 | var elem = {}; |
| 899 | config.setUrlToElem(elem, url, route); |
| 900 | return restangularizeElem(parent, elem, route, false); |
| 901 | } |
| 902 | |
| 903 | |
| 904 | function allUrl(parent, route, url) { |
nothing calls this directly
no test coverage detected