diff options
author | jessib <jessib@riseup.net> | 2013-08-13 10:37:31 -0700 |
---|---|---|
committer | jessib <jessib@riseup.net> | 2013-08-13 10:37:31 -0700 |
commit | d0a15a50e1fdf08f2283562453d4e803aa7b31c8 (patch) | |
tree | 422cabeee1629d823a91e3415d8abf53f44214aa /app/views/layouts/_navigation.html.haml | |
parent | 1bdf34b4bda5af84bd6df44d4e718ea19667682c (diff) |
Option to disable billing engine and hide billing related links. To actual disable, must remove billing engine from Gemfile (and re-bundle)
Diffstat (limited to 'app/views/layouts/_navigation.html.haml')
-rw-r--r-- | app/views/layouts/_navigation.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/layouts/_navigation.html.haml b/app/views/layouts/_navigation.html.haml index cd37ffa..3eb2289 100644 --- a/app/views/layouts/_navigation.html.haml +++ b/app/views/layouts/_navigation.html.haml @@ -3,5 +3,5 @@ = link_to_navigation t(:account_settings), edit_user_path(@user), :active => controller?(:users) = link_to_navigation t(:email_settings), edit_user_email_settings_path(@user), :active => controller?(:email_settings) = link_to_navigation t(:support_tickets), auto_tickets_path, :active => controller?(:tickets) - = link_to_navigation t(:billing_settings), show_or_new_customer_link(@user), :active => controller?(:customer, :payments, :subscriptions, :credit_card_info) + = link_to_navigation t(:billing_settings), show_or_new_customer_link(@user), :active => controller?(:customer, :payments, :subscriptions, :credit_card_info) if engine_enabled('LeapWebBilling') = link_to_navigation t(:logout), logout_path, :method => :delete |