diff options
author | jessib <jessib@leap.se> | 2013-03-26 12:53:35 -0700 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-07-17 10:47:12 +0200 |
commit | 3420d624916eb31396af2adca6562e38173c689d (patch) | |
tree | c38635d55b5b1a293e91e5784ed6127ea27c3b11 /billing/app/controllers/subscription_controller.rb | |
parent | 4a334ce6f6163c2bfa11f3e2146b9d0b765b6d7b (diff) |
More working subscriptions.
Diffstat (limited to 'billing/app/controllers/subscription_controller.rb')
-rw-r--r-- | billing/app/controllers/subscription_controller.rb | 17 |
1 files changed, 0 insertions, 17 deletions
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 |