diff options
Diffstat (limited to 'app/models/concerns')
-rw-r--r-- | app/models/concerns/cacheable.rb | 1 |
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 |