From a6c564dd4e7c604eae062779c45a1303b67cfbf2 Mon Sep 17 00:00:00 2001 From: Azul Date: Fri, 9 Aug 2013 10:37:09 +0200 Subject: fix billing tests to use user id with customer resources I think this is very confusing and should be changed to: resource :users do |user| user.resource :customer end --- billing/app/helpers/billing_helper.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'billing/app/helpers') diff --git a/billing/app/helpers/billing_helper.rb b/billing/app/helpers/billing_helper.rb index 5272eab..3c0691f 100644 --- a/billing/app/helpers/billing_helper.rb +++ b/billing/app/helpers/billing_helper.rb @@ -10,7 +10,8 @@ module BillingHelper end def show_or_new_customer_link(user) - # Link to show if user is admin viewing another user, or user is already a customer. Otherwise link to create a new customer. + # Link to show if user is admin viewing another user, or user is already a customer. + # Otherwise link to create a new customer. if (admin? and (user != current_user)) or ((customer = Customer.find_by_user_id(user.id)) and customer.has_payment_info?) show_customer_path(user) else -- cgit v1.2.3