diff options
-rw-r--r-- | extra/sample_plugin/app/models/meeting.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |