about summary refs log tree commit diff
path: root/app/models/concerns/cacheable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/concerns/cacheable.rb')
-rw-r--r--app/models/concerns/cacheable.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/concerns/cacheable.rb b/app/models/concerns/cacheable.rb
index cd0167048..51451d260 100644
--- a/app/models/concerns/cacheable.rb
+++ b/app/models/concerns/cacheable.rb
@@ -11,5 +11,6 @@ module Cacheable
 
   included do
     scope :with_includes, -> { includes(@cache_associated) }
+    scope :cache_ids, -> { select(:id, :updated_at) }
   end
 end