Skip to content

Instantly share code, notes, and snippets.

@tonyfg
Created September 14, 2018 10:54
Show Gist options
  • Save tonyfg/28b225a55128c2a9bcae959292192a7b to your computer and use it in GitHub Desktop.
Save tonyfg/28b225a55128c2a9bcae959292192a7b to your computer and use it in GitHub Desktop.
Org list #index optimized with .includes
# old action
def index
@organizations = Organization.all
end
# new action
def index
@organizations = if request.format.html?
Organization.includes(hqs: :country).all
else
Organization.includes(hqs: [:country, :stores]).all
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment