diff options
author | jessib <jessib@riseup.net> | 2013-08-01 12:18:03 -0700 |
---|---|---|
committer | jessib <jessib@riseup.net> | 2013-08-01 12:18:03 -0700 |
commit | a98752629c8d04a5fde2287a924855de63321bb2 (patch) | |
tree | d76250a6c7998de9a8cff9a8912fda0c70a44057 /billing/app/helpers/billing_helper.rb | |
parent | 368dbc55966b2b74699065e07de28fe321f286b6 (diff) |
Start to functionality for admins viewing billing of other users.
Diffstat (limited to 'billing/app/helpers/billing_helper.rb')
-rw-r--r-- | billing/app/helpers/billing_helper.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/billing/app/helpers/billing_helper.rb b/billing/app/helpers/billing_helper.rb index 7ec9285..5272eab 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) - if (customer = Customer.find_by_user_id(user.id)) and customer.has_payment_info? + # 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 new_customer_path |