956faaa67d
Only listen for collections actually involved in the view
6 lines
152 B
Ruby
6 lines
152 B
Ruby
module CollectionsHelper
|
|
def referenced_collections_from(records)
|
|
Current.user.collections.where id: records.pluck(:collection_id).uniq
|
|
end
|
|
end
|