Remove auth logic from redirect in Travis.Route

Auth check in redirect duplicates beforeModel logic
This commit is contained in:
Piotr Sarnacki 2014-05-28 08:11:58 +02:00
parent 8d393c2cf7
commit 9dd198ed75

View File

@ -23,19 +23,6 @@ Travis.Route = Ember.Route.extend
signedIn: ->
@controllerFor('currentUser').get('content')
redirect: ->
@auth.autoSignIn() unless @signedIn()
if @get('needsAuth')
@authorize(@router.location.getURL())
else
@_super.apply this, arguments
authorize: (path) ->
if !@signedIn()
@auth.storeAfterSignInPath(path)
@transitionTo('auth')
Travis.ApplicationRoute = Travis.Route.extend
init: ->
@_super.apply this, arguments