travis-web/assets/scripts/app/controllers/profile.coffee
2015-01-15 17:08:40 +01:00

25 lines
653 B
CoffeeScript

Travis.ProfileController = Ember.Controller.extend
name: 'profile'
needs: ['currentUser', 'accounts', 'account']
userBinding: 'controllers.currentUser'
accountBinding: 'controllers.account'
activate: (action, params) ->
this["view#{$.camelize(action)}"]()
viewHooks: ->
@connectTab('hooks')
@get('controllers.account').reloadHooks()
viewUser: ->
@connectTab('user')
connectTab: (tab) ->
@set('tab', tab)
billingUrl: (->
id = if @get('account.type') == 'user' then 'user' else @get('account.login')
"#{@get('config').billing_endpoint}/subscriptions/#{id}"
).property('account.login', 'account.type')