diff --git a/app/authenticated/route.js b/app/authenticated/route.js index b58a5bed2..e49cc2571 100644 --- a/app/authenticated/route.js +++ b/app/authenticated/route.js @@ -111,14 +111,7 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, { function fail() { // Then cry select(null); - if ( self.get('app.authenticationEnabled') && !self.get('app.isAuthenticationAdmin') ) - { - self.send('logout'); - } - else - { - self.transitionTo('projects'); - } + self.transitionTo('projects'); } },