diff options
author | jessib <jessib@riseup.net> | 2013-08-22 12:21:43 -0700 |
---|---|---|
committer | jessib <jessib@riseup.net> | 2013-08-22 12:21:43 -0700 |
commit | 03a643458733550a9bfb5e661e5a74b1964f021c (patch) | |
tree | ae13caf971cf13ee9d9109f4f5ac8b98ec8d639a /billing/app/controllers/customer_controller.rb | |
parent | d948614d3e2bc190b9c819e961b94c03d7a24fcd (diff) |
Some more billing cleanup.
Diffstat (limited to 'billing/app/controllers/customer_controller.rb')
-rw-r--r-- | billing/app/controllers/customer_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/billing/app/controllers/customer_controller.rb b/billing/app/controllers/customer_controller.rb index 0120e91..901cb34 100644 --- a/billing/app/controllers/customer_controller.rb +++ b/billing/app/controllers/customer_controller.rb @@ -4,7 +4,7 @@ class CustomerController < BillingBaseController def show if @customer @customer.with_braintree_data! - @default_cc = @customer.default_credit_card #TODO not actually right way + @default_cc = @customer.default_credit_card @active_subscription = @customer.subscriptions @transactions = @customer.braintree_customer.transactions end |