From my Ember application I have to call some REST API which supports only matrix parameters in URL (separated by ';') and does not support more classic query parameters (separated by '?' and '&').
I use Ember Data 1.0.0-beta.15.
By default, when I call store.find(), a request URL is built using query parameters. Is there any configuration ways to instruct RESTAdapter (I believe this is the component to configure in my case) to apply matrix parameters?
Thank you! Andre