summaryrefslogtreecommitdiff
path: root/billing/app/controllers
diff options
context:
space:
mode:
authorjessib <jessib@riseup.net>2013-10-08 12:32:07 -0700
committerjessib <jessib@riseup.net>2013-10-08 12:32:07 -0700
commit014ff5bda0802d51b4cbca5a2fd904d953223d2f (patch)
tree96846abbd1ba30d365affe4891d2cfaea3176191 /billing/app/controllers
parenteaedf19e2e54ccb9933caa8dc21df13e48609b18 (diff)
Payments made when authenticated will be donations, and not connected to customer in any way.
Diffstat (limited to 'billing/app/controllers')
-rw-r--r--billing/app/controllers/payments_controller.rb15
1 files changed, 1 insertions, 14 deletions
diff --git a/billing/app/controllers/payments_controller.rb b/billing/app/controllers/payments_controller.rb
index 17ac0f3..0b5abe7 100644
--- a/billing/app/controllers/payments_controller.rb
+++ b/billing/app/controllers/payments_controller.rb
@@ -27,21 +27,8 @@ class PaymentsController < BillingBaseController
def fetch_transparent_redirect
- if logged_in?
- if @customer = Customer.find_by_user_id(@user.id)
- @customer.with_braintree_data!
- braintree_customer_id = @customer.braintree_customer_id
- @default_cc = @customer.default_credit_card
- else
- # TODO: this requires user to add self to vault before making payment. Is that desired functionality?
- redirect_to new_customer_path, :notice => 'Before making payment, please add your customer data'
- end
- end
-
- # TODO: What is this supposed to do if braintree_customer_id was not set yet?
- # Response: it can be used to make a payment that is not attributed to any customer (ie, a donation)
@tr_data = Braintree::TransparentRedirect.transaction_data redirect_url: confirm_payment_url,
- transaction: { type: "sale", customer_id: braintree_customer_id, options: {submit_for_settlement: true } }
+ transaction: { type: "sale", options: {submit_for_settlement: true } }
end
end