diff options
author | jessib <jessib@leap.se> | 2013-04-09 13:51:02 -0700 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-07-17 10:47:12 +0200 |
commit | 981179a58d47589f8444347856c1e8acce1f91d1 (patch) | |
tree | d5c558e289ddd8160fc97ae986b0a1dea5feb003 /billing/app/controllers/subscriptions_controller.rb | |
parent | bee5c4a93f6bf664609673d7e703476f15147fe3 (diff) |
Display of subscription information on a customer's edit page. It is *super* slow. Posted stackoverflow question as not clear if there is more efficient way to get this information via braintree API.
Diffstat (limited to 'billing/app/controllers/subscriptions_controller.rb')
-rw-r--r-- | billing/app/controllers/subscriptions_controller.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/billing/app/controllers/subscriptions_controller.rb b/billing/app/controllers/subscriptions_controller.rb index fcf5ecb..38b17b4 100644 --- a/billing/app/controllers/subscriptions_controller.rb +++ b/billing/app/controllers/subscriptions_controller.rb @@ -2,12 +2,15 @@ class SubscriptionsController < ApplicationController before_filter :authorize def new + # don't show link to subscribe if they are already subscribed? customer = Customer.find_by_user_id(current_user.id) + @payment_method_token = customer.default_credit_card.token @plans = Braintree::Plan.all end + def create @result = Braintree::Subscription.create( :payment_method_token => params[:payment_method_token], :plan_id => params[:plan_id] ) end |