From 894bb2f289242be7ec171b6c19161c75daaf4589 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Fri, 27 Jan 2023 04:04:20 +0000 Subject: [PATCH] Fix that Example plugin (extra/sample_plugin) breaks Activity page (#38114). MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Patch by Karel Pičman. git-svn-id: https://svn.redmine.org/redmine/trunk@22079 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- extra/sample_plugin/app/models/meeting.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/sample_plugin/app/models/meeting.rb b/extra/sample_plugin/app/models/meeting.rb index 251892ece..78d801304 100644 --- a/extra/sample_plugin/app/models/meeting.rb +++ b/extra/sample_plugin/app/models/meeting.rb @@ -7,6 +7,6 @@ class Meeting < ActiveRecord::Base :url => Proc.new {|o| {:controller => 'meetings', :action => 'show', :id => o.id}} acts_as_activity_provider :timestamp => 'scheduled_on', - :scope => proc { includes(:project) }, + :scope => proc { joins(:project) }, :permission => nil end -- 2.39.5