Eager-load data used in EnterpriseGroupsController

Cuts page load time by ~75%
This commit is contained in:
Matt-Yorkley
2020-03-23 14:30:53 +01:00
parent 26cd0f4a9d
commit 7110f9e6ee

View File

@@ -17,7 +17,10 @@ module InjectionHelper
inject_json_ams(
"groups",
EnterpriseGroup.on_front_page.by_position.select(select_only).includes(address: :state).all,
EnterpriseGroup.on_front_page.by_position.select(select_only).
includes(enterprises: [:shipping_methods, { address: [:state, :country] }],
address: :state).
all,
Api::GroupListSerializer
)
end