forked from cybrespace/mastodon
		
	Fix cache_associated no longer working (#7320)
This commit is contained in:
		
							parent
							
								
									28bd4b9800
								
							
						
					
					
						commit
						a3d84e705a
					
				
					 1 changed files with 10 additions and 5 deletions
				
			
		| 
						 | 
					@ -3,14 +3,19 @@
 | 
				
			||||||
module Cacheable
 | 
					module Cacheable
 | 
				
			||||||
  extend ActiveSupport::Concern
 | 
					  extend ActiveSupport::Concern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  class_methods do
 | 
					  module ClassMethods
 | 
				
			||||||
 | 
					    @cache_associated = []
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def cache_associated(*associations)
 | 
					    def cache_associated(*associations)
 | 
				
			||||||
      @cache_associated = associations
 | 
					      @cache_associated = associations
 | 
				
			||||||
    end
 | 
					    end
 | 
				
			||||||
  end
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  included do
 | 
					    def with_includes
 | 
				
			||||||
    scope :with_includes, -> { includes(@cache_associated) }
 | 
					      includes(@cache_associated)
 | 
				
			||||||
    scope :cache_ids, -> { select(:id, :updated_at) }
 | 
					    end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    def cache_ids
 | 
				
			||||||
 | 
					      select(:id, :updated_at)
 | 
				
			||||||
 | 
					    end
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue