Fix transition deprecation

This commit is contained in:
Matthew Dillon 2015-08-24 12:28:14 -07:00
parent 3a03dbe92f
commit f1a1b1f63a

View file

@ -9,7 +9,7 @@ export default Ember.Controller.extend({
// Manually clean up because there might not be a transition
this.get('flashMessages').clearMessages();
this.transitionTo('loading').then(() => {
this.transitionToRoute('loading').then(() => {
session.authenticate(authenticator, credentials).then(null, (error)=> {
this.get('flashMessages').error(error.error);
});