parent
329b2a326d
commit
1bb1ec3b8d
@ -0,0 +1,15 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Cacheable
|
||||
extend ActiveSupport::Concern
|
||||
|
||||
class_methods do
|
||||
def cache_associated(*associations)
|
||||
@cache_associated = associations
|
||||
end
|
||||
end
|
||||
|
||||
included do
|
||||
scope :with_includes, -> { includes(@cache_associated) }
|
||||
end
|
||||
end
|
Loading…
Reference in new issue