I want to bind a controller property that contains an ember-data object to a query string param. I'm using 1.6.0-beta.1+canary with the following in my controller.
export
default Ember.Controller.extend({
queryParams: ['project'],
project: null
});
I can't find a way to serialize/deserialize the ember-data object (project) to/from the url though. Is it possible yet?