Plug billingUrl properly

This commit is contained in:
Piotr Sarnacki 2015-03-27 15:28:59 +01:00
parent 74d1415258
commit 54cd5079a8

View File

@ -47,4 +47,9 @@ Controller = Ember.ObjectController.extend
@config.show_repos_hint == 'public'
) .property()
billingUrl: (->
id = if @get('model.type') == 'user' then 'user' else @get('model.login')
"#{@get('config').billingEndpoint}/subscriptions/#{id}"
).property('model.login', 'model.type')
`export default Controller`