2
votes
4answers
419 views
Given an array of ActiveRecord objects, can I easily collect their relationships through a method call?
Let's say I have the following code:
@sites = Site.find(session[:sites]) # will be an array of Site ids
@languages = Language.for_sites(@sites)
for_sites is a name …
