From 1d12ecc65b90643b1d5737dbfde7d8fe68993ecf Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Thu, 30 Oct 2025 12:32:20 +0100 Subject: [PATCH] Scope collections to column --- app/controllers/concerns/collection_scoped.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/concerns/collection_scoped.rb b/app/controllers/concerns/collection_scoped.rb index 0ca968fbf..6ff65baf9 100644 --- a/app/controllers/concerns/collection_scoped.rb +++ b/app/controllers/concerns/collection_scoped.rb @@ -11,6 +11,6 @@ module CollectionScoped end def cards_fresh_when(cards) - fresh_when etag: [ cards, @collection.entropy_configuration, @collection.name, Column.all ] + fresh_when etag: [ cards, @collection.entropy_configuration, @collection.name, @collection.columns.all ] end end