summaryrefslogtreecommitdiff
path: root/billing/app/controllers/subscriptions_controller.rb
diff options
context:
space:
mode:
authorjessib <jessib@leap.se>2013-03-26 12:53:35 -0700
committerAzul <azul@leap.se>2013-07-17 10:47:12 +0200
commit3420d624916eb31396af2adca6562e38173c689d (patch)
treec38635d55b5b1a293e91e5784ed6127ea27c3b11 /billing/app/controllers/subscriptions_controller.rb
parent4a334ce6f6163c2bfa11f3e2146b9d0b765b6d7b (diff)
More working subscriptions.
Diffstat (limited to 'billing/app/controllers/subscriptions_controller.rb')
-rw-r--r--billing/app/controllers/subscriptions_controller.rb15
1 files changed, 15 insertions, 0 deletions
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