From dbd09966553e2fa64211b89f8fae64ddd1e822ca Mon Sep 17 00:00:00 2001 From: jessib Date: Mon, 25 Mar 2013 14:21:29 -0700 Subject: Needs much work, but basic start to recurring payments. --- billing/app/controllers/subscription_controller.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 billing/app/controllers/subscription_controller.rb (limited to 'billing/app/controllers') diff --git a/billing/app/controllers/subscription_controller.rb b/billing/app/controllers/subscription_controller.rb new file mode 100644 index 0000000..d284e78 --- /dev/null +++ b/billing/app/controllers/subscription_controller.rb @@ -0,0 +1,17 @@ +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 -- cgit v1.2.3