blob: fcf5ecb0388a92b601c8027ccf6313cc462e554f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|