When I pass an array to a resource action.. it doesn't convert the array parameter to an array of URL parameters
var Product = $resource('path/products');
Product.query({ids: [1,2,3]})
Instead of getting:
path/products?ids[]=1&ids[]=2ids[]=3
I'm getting:
path/products?ids=1&ids=2ids=3
Anyone knows how to get around this issue?