From: Go MAEDA Date: Fri, 27 Jan 2023 04:04:20 +0000 (+0000) Subject: Fix that Example plugin (extra/sample_plugin) breaks Activity page (#38114). X-Git-Tag: 5.1.0~259 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=894bb2f289242be7ec171b6c19161c75daaf4589;p=redmine.git Fix that Example plugin (extra/sample_plugin) breaks Activity page (#38114). Patch by Karel Pičman. git-svn-id: https://svn.redmine.org/redmine/trunk@22079 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- 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