diff options
author | claucece <soficeli0@gmail.com> | 2015-09-27 23:04:55 -0500 |
---|---|---|
committer | claucece <soficeli0@gmail.com> | 2015-10-05 22:41:21 -0500 |
commit | 6c4f02fd2d530c28899561fac40ca76075975dc8 (patch) | |
tree | 575f0aa91e189a6894f3bd1bce7fb5e83f02a6f7 /engines/billing/app/helpers/billing_helper.rb | |
parent | b26d10fe7d87b570bd888fa2a2543f3675278f8b (diff) |
update to haml, created translations, deleted files
Diffstat (limited to 'engines/billing/app/helpers/billing_helper.rb')
-rw-r--r-- | engines/billing/app/helpers/billing_helper.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/billing/app/helpers/billing_helper.rb b/engines/billing/app/helpers/billing_helper.rb index 7b9f8bb..6d1df5a 100644 --- a/engines/billing/app/helpers/billing_helper.rb +++ b/engines/billing/app/helpers/billing_helper.rb @@ -1,5 +1,6 @@ module BillingHelper + #deprecated.. erase? def braintree_form_for(object, options = {}, &block) options.reverse_merge! params: @result && @result.params[object], errors: @result && @result.errors.for(object), @@ -18,6 +19,7 @@ module BillingHelper end end + #deprecated.. erase? 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. @@ -28,6 +30,7 @@ module BillingHelper end end + #deprecated.. erase? # a bit strange to put here, but we don't have a subscription model def user_for_subscription(subscription) @@ -44,6 +47,7 @@ module BillingHelper end + #customer needs to see active or pending? def allow_cancel_subscription(subscription) ['Active', 'Pending'].include? subscription.status or (admin? and subscription.status == 'Past Due') end |