diff options
author | Peter Kozak <spag@golwen.net> | 2013-02-28 09:02:19 -0500 |
---|---|---|
committer | Peter Kozak <spag@golwen.net> | 2013-02-28 09:02:19 -0500 |
commit | 1353b9c0563da02f1b17e54d802f28221cdce982 (patch) | |
tree | af6aac72b7ca45634853af6b6865f0890e209f7a /app/controllers/calls_controller.rb | |
parent | 9511b56c4a06a17ac68b4fc053a6217e0273a132 (diff) |
breadcrumbs
Diffstat (limited to 'app/controllers/calls_controller.rb')
-rw-r--r-- | app/controllers/calls_controller.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/controllers/calls_controller.rb b/app/controllers/calls_controller.rb index 5534b1b..22ff92d 100644 --- a/app/controllers/calls_controller.rb +++ b/app/controllers/calls_controller.rb @@ -3,6 +3,7 @@ class CallsController < ApplicationController load_resource :call before_filter :set_and_authorize_parent + before_filter :spread_breadcrumbs def index if @parent @@ -55,4 +56,20 @@ class CallsController < ApplicationController def set_and_authorize_parent @parent = @sip_account end + + def spread_breadcrumbs + if @parent.class == SipAccount + if @sip_account.sip_accountable.class == User + add_breadcrumb t('users.name'), tenant_users_path(@sip_account.sip_accountable.current_tenant) + add_breadcrumb @sip_account.sip_accountable, tenant_user_path(@sip_account.sip_accountable.current_tenant, @sip_account.sip_accountable) + add_breadcrumb t('sip_accounts.index.page_title'), user_sip_accounts_path(@sip_account.sip_accountable) + add_breadcrumb @sip_account, user_sip_account_path(@sip_account.sip_accountable, @sip_account) + add_breadcrumb t('calls.index.page_title'), sip_account_calls_path(@sip_account) + elsif @sip_account.sip_accountable.class == Tenant + add_breadcrumb t('sip_accounts.index.page_title'), tenant_sip_accounts_path(@sip_account.sip_accountable) + add_breadcrumb @sip_account, tenant_sip_account_path(@sip_account.sip_accountable, @sip_account) + add_breadcrumb t('calls.index.page_title'), sip_account_calls_path(@sip_account) + end + end + end end |