This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-11-30 15:57:56 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Cacheable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2018-05-03 10:41:41 +02:00
|
|
|
module ClassMethods
|
|
|
|
@cache_associated = []
|
|
|
|
|
2016-11-30 15:57:56 +01:00
|
|
|
def cache_associated(*associations)
|
|
|
|
@cache_associated = associations
|
|
|
|
end
|
|
|
|
|
2018-05-03 10:41:41 +02:00
|
|
|
def with_includes
|
|
|
|
includes(@cache_associated)
|
|
|
|
end
|
|
|
|
|
|
|
|
def cache_ids
|
|
|
|
select(:id, :updated_at)
|
|
|
|
end
|
2016-11-30 15:57:56 +01:00
|
|
|
end
|
|
|
|
end
|