I am trying to build a resource in Restangular with a URL that has multiple variables. The server variable is set, so I need to figure out how to do this client side.
This is the URL that I was using in ngResource:
'/api/v1/reports/shipped-orders/:reportDate/:orderType'
There isn't really any nesting past shipped-orders, it's just passing parameters through the URL.
I tried chaining them like:
_reports.one('shipped-order', '2013-11-04').one('', 'bulk')
But that turned out a url with double slashes in it.