travis-web/app/routes/accounts/index.coffee
2015-06-02 11:16:04 +02:00

13 lines
451 B
CoffeeScript

`import TravisRoute from 'travis/routes/basic'`
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('model.login')
account = accounts.find (account) -> account.get('login') == login
@replaceWith 'account', account
`export default Route`