Ember warns that transitionTo deprecated in favor of transitionToRoute . However, ember currently has route.transitionTo and controller.transitionTo . Only controller.transitionTo has an API deprecation notice in the source code as well.
Is a notification that route.transitionTo is an obsolete error or is an idiomatic method of switching to this.controllerFor( routename ).transitionToRoute() .
ANSWER: NOT DELETED
It turned out that I had a mix using this.transitionTo , which was supposed to participate only in the route, but was used in the controller, which made it difficult to notice.
runspired
source share