summaryrefslogtreecommitdiff
path: root/app/views/layouts
diff options
context:
space:
mode:
authorazul <azul@riseup.net>2013-12-20 11:28:42 -0800
committerazul <azul@riseup.net>2013-12-20 11:28:42 -0800
commit9d1fdcb1d5a18c74776b43cb78e3dc305fdddffc (patch)
tree20a6789a80c0cdaa14623b9a809eccb122841f91 /app/views/layouts
parent76517637ddf70577bd2a14bebb8a57552fbb1776 (diff)
parent5818a2a101cc89c778c5a5e62271ab42b1fa4c70 (diff)
Merge pull request #128 from elijh/feature/configure_billing
make billing configurable from platform
Diffstat (limited to 'app/views/layouts')
-rw-r--r--app/views/layouts/_navigation.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/layouts/_navigation.html.haml b/app/views/layouts/_navigation.html.haml
index 6de567a..f90ed16 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)
- # will want link for identity settings
= link_to_navigation t(:support_tickets), auto_tickets_path, :active => controller?(:tickets)
- = link_to_navigation t(:billing_settings), billing_top_link(@user), :active => controller?(:customer, :payments, :subscriptions, :credit_card_info) if APP_CONFIG[:payment].present?
+ = link_to_navigation t(:billing_settings), billing_top_link(@user), :active => controller?(:customer, :payments, :subscriptions, :credit_card_info) if APP_CONFIG[:billing]
= link_to_navigation t(:logout), logout_path, :method => :delete