Fix transition deprecation
This commit is contained in:
parent
3a03dbe92f
commit
f1a1b1f63a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
});
|
||||
|
|
Reference in a new issue