summaryrefslogtreecommitdiff
path: root/billing/app/helpers
diff options
context:
space:
mode:
authorjessib <jessib@riseup.net>2013-08-12 12:10:05 -0700
committerjessib <jessib@riseup.net>2013-08-12 12:10:05 -0700
commitd895a582df7c8f333c0aa1b97b555fbd8e4ea50f (patch)
tree7fd940bf4ac8dd394d7a25a07329d5469a17dfa0 /billing/app/helpers
parent8d9d7b369d99b40d709ac49b124f8c3f67579202 (diff)
parent466e22fa896d307f26cddab7a2e1302cf3a0f1fc (diff)
Merge pull request #2 from azul/feature/billing-with-passing-tests
fix billing tests to use user id with customer resources
Diffstat (limited to 'billing/app/helpers')
-rw-r--r--billing/app/helpers/billing_helper.rb3
1 files changed, 2 insertions, 1 deletions
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