travis-web/assets/scripts/app/routes/accounts/index.coffee
2015-01-14 18:07:27 +01:00

16 lines
460 B
CoffeeScript

require 'routes/route'
TravisRoute = Travis.Route
Route = TravisRoute.extend
redirect: ->
# TODO: setting accounts model in ProfileRoute is wrong, but
# at this stage it's better than what we had before
accounts = @modelFor('accounts')
login = @controllerFor('currentUser').get('login')
account = accounts.find (account) -> account.get('login') == login
@replaceWith 'account', account
Travis.AccountsIndexRoute = Route