I've just upgraded to the latest ember and the following code is breaking, I have a number of these actions defined on the router
App.Router = Em.Router.extend
showUser: Ember.Route.transitionTo('root.users.user')
with the following error message
Uncaught TypeError: Object Ember.Route has no method 'transitionTo'
There is nothing in the changelog about this change but it has been removed from the Route class. It still exists on the instance.
How else can I define actions like these on the router which I can call from elsewhere?