In 1.7 Ember should support Query Parameters. I have no problems using them in controller but I\'d like to access them in Route, ideally in beforeModel hook but model hook w
By specifying the query params in the controller, params will contain them automatically
params
ApplicationController = Ember.Controller.extend({ queryParams: ['test'], test: null });