If you are using Ember data
(v1.0.0> x).
parent.get('stateManager').goToState('updated')
Does not work any more. Now you should use :
parent.transitionTo('updated');
This is a hierarchy of valid states that are sent with ember data:
* root * deleted * saved * uncommitted * inFlight * empty * loaded * created * uncommitted * inFlight * saved * updated * uncommitted * inFlight * loading
State Suppression
source share