diff options
Diffstat (limited to 'app/controllers/welcome_controller.rb')
-rw-r--r-- | app/controllers/welcome_controller.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/controllers/welcome_controller.rb b/app/controllers/welcome_controller.rb index ee73270..0c41e5a 100644 --- a/app/controllers/welcome_controller.rb +++ b/app/controllers/welcome_controller.rb @@ -62,10 +62,10 @@ class WelcomeController < ApplicationController name: current_agent.name, uuid: current_agent.uuid, counts: { - resources: current_agent.resources.count, - taxonomies: current_agent.taxonomies.count, - categories: current_agent.categories.count, - sectiions: current_agent.sections.count + resources: current_agent.resources&.count, + taxonomies: current_agent.taxonomies&.count, + categories: current_agent.categories&.count, + sectiions: current_agent.sections&.count } }, my_agents: current_user.agents.map { |a| { uuid: a.uuid, name: a.name } } |