From 3420d624916eb31396af2adca6562e38173c689d Mon Sep 17 00:00:00 2001 From: jessib Date: Tue, 26 Mar 2013 12:53:35 -0700 Subject: More working subscriptions. --- billing/app/controllers/subscription_controller.rb | 17 ----------------- billing/app/controllers/subscriptions_controller.rb | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 17 deletions(-) delete mode 100644 billing/app/controllers/subscription_controller.rb create mode 100644 billing/app/controllers/subscriptions_controller.rb (limited to 'billing/app/controllers') diff --git a/billing/app/controllers/subscription_controller.rb b/billing/app/controllers/subscription_controller.rb deleted file mode 100644 index d284e78..0000000 --- a/billing/app/controllers/subscription_controller.rb +++ /dev/null @@ -1,17 +0,0 @@ -class SubscriptionController < ApplicationController - before_filter :authorize - - def new - customer = Customer.find_by_user_id(current_user.id) - braintree_customer = Braintree::Customer.find(customer.braintree_customer_id) - payment_method_token = customer.default_credit_card.token - @result = Braintree::Subscription.create( :payment_method_token => payment_method_token, :plan_id => "ttw2" ) #todo obviously don't hardcode payment id - debugger - - end - - def confirm - - end - -end diff --git a/billing/app/controllers/subscriptions_controller.rb b/billing/app/controllers/subscriptions_controller.rb new file mode 100644 index 0000000..fcf5ecb --- /dev/null +++ b/billing/app/controllers/subscriptions_controller.rb @@ -0,0 +1,15 @@ +class SubscriptionsController < ApplicationController + before_filter :authorize + + def new + 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 + +end -- cgit v1.2.3