fix logging out from editor page

closes #6514
- removes transition.abort from the signout method because it can override the ember-simple-auth's page refresh
This commit is contained in:
Austin Burdine 2016-02-16 20:02:53 -06:00
parent ac293db0a2
commit ccfbf65f7b

View File

@ -18,7 +18,6 @@ export default AuthenticatedRoute.extend(styleBody, {
this.get('notifications').clearAll();
if (canInvoke(transition, 'send')) {
transition.send('invalidateSession');
transition.abort();
} else {
this.send('invalidateSession');
}